showbc: Decode MAP_ADD.
diff --git a/py/showbc.c b/py/showbc.c
index 48d5328..91b7572 100644
--- a/py/showbc.c
+++ b/py/showbc.c
@@ -404,14 +404,10 @@
                 printf("STORE_MAP");
                 break;
 
-                /*
             case MP_BC_MAP_ADD:
                 DECODE_UINT;
-                // I think it's guaranteed by the compiler that sp[unum + 1] is a map
-                rt_store_map(sp[unum + 1], sp[0], sp[1]);
-                sp += 2;
+                printf("MAP_ADD " UINT_FMT, unum);
                 break;
-                */
 
             case MP_BC_BUILD_SET:
                 DECODE_UINT;