summaryrefslogtreecommitdiffstatshomepage
path: root/py/bc.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-01 18:29:40 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-01 18:29:40 +0000
commitfb083ea986d758c7426fda091c4899f0511aaa8c (patch)
treef63392368dc5140441ab3f0d8a04ec1ca9585871 /py/bc.h
parent87413a4d0c579ec491cf52ab8d6520430df64c7d (diff)
downloadmicropython-fb083ea986d758c7426fda091c4899f0511aaa8c.tar.gz
micropython-fb083ea986d758c7426fda091c4899f0511aaa8c.zip
py: mp_execute_byte_code has 2 arg arrays, for more efficient default params.
Diffstat (limited to 'py/bc.h')
-rw-r--r--py/bc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/bc.h b/py/bc.h
index 17f71553e8..814201160b 100644
--- a/py/bc.h
+++ b/py/bc.h
@@ -1,3 +1,3 @@
-mp_obj_t mp_execute_byte_code(const byte *code, const mp_obj_t *args, uint n_args, uint n_state);
+mp_obj_t mp_execute_byte_code(const byte *code, const mp_obj_t *args, uint n_args, const mp_obj_t *args2, uint n_args2, uint n_state);
bool mp_execute_byte_code_2(const byte *code_info, const byte **ip_in_out, mp_obj_t *fastn, mp_obj_t **sp_in_out);
void mp_byte_code_print(const byte *code, int len);