diff options
Diffstat (limited to 'py/showbc.c')
-rw-r--r-- | py/showbc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c index c1e420f43..08dec1e2b 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -101,11 +101,20 @@ void mp_byte_code_print(const byte *ip, int len) { printf("LOAD_CONST_ID %s", qstr_str(qstr)); break; + case MP_BC_LOAD_CONST_BYTES: + DECODE_QSTR; + printf("LOAD_CONST_BYTES %s", qstr_str(qstr)); + break; + case MP_BC_LOAD_CONST_STRING: DECODE_QSTR; printf("LOAD_CONST_STRING %s", qstr_str(qstr)); break; + case MP_BC_LOAD_NULL: + printf("LOAD_NULL"); + break; + case MP_BC_LOAD_FAST_0: printf("LOAD_FAST_0"); break; |