summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--py/vm.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/py/vm.c b/py/vm.c
index 3c3f398c04..f3c38b864e 100644
--- a/py/vm.c
+++ b/py/vm.c
@@ -115,6 +115,11 @@ bool mp_execute_byte_code_2(const byte **ip_in_out, mp_obj_t *fastn, mp_obj_t **
PUSH(rt_load_const_str(qstr)); // TODO
break;
+ case MP_BC_LOAD_CONST_BYTES:
+ DECODE_QSTR;
+ PUSH(rt_load_const_str(qstr)); // TODO
+ break;
+
case MP_BC_LOAD_CONST_STRING:
DECODE_QSTR;
PUSH(rt_load_const_str(qstr));