showbc: Dump LOAD_NULL.

This commit is contained in:
Paul Sokolovsky 2014-04-12 00:32:38 +03:00
parent af620abcb5
commit 00a9d138b2
1 changed files with 4 additions and 0 deletions

View File

@ -106,6 +106,10 @@ void mp_byte_code_print(const byte *ip, int len) {
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;