diff options
Diffstat (limited to 'py/showbc.c')
-rw-r--r-- | py/showbc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c index d755d3c96c..bf25966e97 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -182,6 +182,10 @@ void mp_byte_code_print(const byte *ip, int len) { printf("LOAD_BUILD_CLASS"); break; + case MP_BC_LOAD_SUBSCR: + printf("LOAD_SUBSCR"); + break; + case MP_BC_STORE_FAST_0: printf("STORE_FAST_0"); break; |