diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-12 00:34:57 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-12 00:39:55 +0300 |
commit | b9b1c00c8af9e4d654aed30f8f98875657f14891 (patch) | |
tree | 55df97262dcd59000827a81ff788b6ae4ff5472b | |
parent | 00a9d138b2e66c9e144d30f52ed9dfe8863a6143 (diff) | |
download | micropython-b9b1c00c8af9e4d654aed30f8f98875657f14891.tar.gz micropython-b9b1c00c8af9e4d654aed30f8f98875657f14891.zip |
showbs: Dump LOAD_CONST_BYTES.
-rw-r--r-- | py/showbc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c index 8d6e867b14..08dec1e2bf 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -101,6 +101,11 @@ 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)); |