Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
ab21caa5
Commit
ab21caa5
authored
Jan 02, 2014
by
Damien George
Browse files
Merge pull request #36 from pfalcon/b-string-prefix
Add quick impl for MP_BC_LOAD_CONST_BYTES which just creates qstr so far...
parents
fe8fb916
bdf822b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/vm.c
View file @
ab21caa5
...
...
@@ -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
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment