diff options
Diffstat (limited to 'py/showbc.c')
-rw-r--r-- | py/showbc.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/py/showbc.c b/py/showbc.c index 4c19a6becc..d765c81a5f 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -263,12 +263,14 @@ void mp_byte_code_print(const byte *ip, int len) { printf("POP_EXCEPT"); break; - /* + case MP_BC_NOT: + printf("NOT"); + break; + case MP_BC_UNARY_OP: unum = *ip++; - *sp = rt_unary_op(unum, *sp); + printf("UNARY_OP " UINT_FMT, unum); break; - */ case MP_BC_BINARY_OP: unum = *ip++; |