py: More output in showbc.

This commit is contained in:
Damien George 2014-02-06 20:31:32 +00:00
parent bbcd49a496
commit ddaf6c112c

View File

@ -170,6 +170,16 @@ void mp_byte_code_print(const byte *ip, int len) {
printf("STORE_SUBSCR");
break;
case MP_BC_DELETE_FAST_N:
DECODE_UINT;
printf("DELETE_FAST_N " UINT_FMT, unum);
break;
case MP_BC_DELETE_NAME:
DECODE_QSTR;
printf("DELETE_NAME %s", qstr_str(qstr));
break;
case MP_BC_DUP_TOP:
printf("DUP_TOP");
break;