diff --git a/py/showbc.c b/py/showbc.c
index adfa7544fd3f40d8642a8a254f661e73d3fd2399..3a468326dbf41371ded7b4c5a037b5c1d9d812c1 100644
--- a/py/showbc.c
+++ b/py/showbc.c
@@ -275,6 +275,11 @@ const byte *mp_bytecode_print_str(const byte *ip) {
             printf("DELETE_NAME %s", qstr_str(qst));
             break;
 
+        case MP_BC_DELETE_GLOBAL:
+            DECODE_QSTR;
+            printf("DELETE_GLOBAL %s", qstr_str(qst));
+            break;
+
         case MP_BC_DUP_TOP:
             printf("DUP_TOP");
             break;