diff --git a/py/showbc.c b/py/showbc.c
index d765c81a5f6ff78fb2914971be7ee4a0813ea93e..9dfbc887219d3e65f68b4b97cae82f6ddfb9174f 100644
--- a/py/showbc.c
+++ b/py/showbc.c
@@ -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;