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
b9b1c00c
Commit
b9b1c00c
authored
Apr 12, 2014
by
Paul Sokolovsky
Browse files
showbs: Dump LOAD_CONST_BYTES.
parent
00a9d138
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/showbc.c
View file @
b9b1c00c
...
...
@@ -101,6 +101,11 @@ void mp_byte_code_print(const byte *ip, int len) {
printf
(
"LOAD_CONST_ID %s"
,
qstr_str
(
qstr
));
break
;
case
MP_BC_LOAD_CONST_BYTES
:
DECODE_QSTR
;
printf
(
"LOAD_CONST_BYTES %s"
,
qstr_str
(
qstr
));
break
;
case
MP_BC_LOAD_CONST_STRING
:
DECODE_QSTR
;
printf
(
"LOAD_CONST_STRING %s"
,
qstr_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