summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-01 17:51:47 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-01 17:51:47 +0000
commit87413a4d0c579ec491cf52ab8d6520430df64c7d (patch)
treec19abcbf9275c5debd4436ed5146a4aab1ad4c7d /py/showbc.c
parent382b3d00ed9a2f31dcedbf65ce82cbada9b6dbdf (diff)
parent90750029df8d7fd24600cc4fe4c98a5b80731f28 (diff)
downloadmicropython-87413a4d0c579ec491cf52ab8d6520430df64c7d.tar.gz
micropython-87413a4d0c579ec491cf52ab8d6520430df64c7d.zip
Merge branch 'fun-defargs' of github.com:pfalcon/micropython into pfalcon-fun-defargs
Diffstat (limited to 'py/showbc.c')
-rw-r--r--py/showbc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c
index 8a12302531..53a1826045 100644
--- a/py/showbc.c
+++ b/py/showbc.c
@@ -339,6 +339,11 @@ void mp_byte_code_print(const byte *ip, int len) {
printf("MAKE_FUNCTION " UINT_FMT, unum);
break;
+ case MP_BC_MAKE_FUNCTION_DEFARGS:
+ DECODE_UINT;
+ printf("MAKE_FUNCTION_DEFARGS " UINT_FMT, unum);
+ break;
+
case MP_BC_MAKE_CLOSURE:
DECODE_UINT;
printf("MAKE_CLOSURE " UINT_FMT, unum);