Skip to content
Snippets Groups Projects
Commit f9168ba7 authored by Damien George's avatar Damien George
Browse files

Merge branch 'master' of github.com:dpgeorge/micropython

parents 40b7c73e ab21caa5
No related branches found
No related tags found
No related merge requests found
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment