summaryrefslogtreecommitdiff
path: root/stm/pyexec.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-08 16:40:08 +0000
committerDamien George <damien.p.george@gmail.com>2014-03-08 16:40:08 +0000
commitc3d35c6ac7348e8dc9072bb67b2c62294764fe00 (patch)
treef7eed83b56bb6814bd78b3c1b8fddb7df3b74ad2 /stm/pyexec.c
parent01d50d0d586a0e2630613120336faf75277d22d6 (diff)
stm: Put pyb module in ROM.
Diffstat (limited to 'stm/pyexec.c')
-rw-r--r--stm/pyexec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stm/pyexec.c b/stm/pyexec.c
index 207f2234f..75fe87c88 100644
--- a/stm/pyexec.c
+++ b/stm/pyexec.c
@@ -317,3 +317,5 @@ mp_obj_t pyb_set_repl_info(mp_obj_t o_value) {
repl_display_debugging_info = mp_obj_get_int(o_value);
return mp_const_none;
}
+
+MP_DEFINE_CONST_FUN_OBJ_1(pyb_set_repl_info_obj, pyb_set_repl_info);