Skip to content
Snippets Groups Projects
Commit 724b8255 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

zephyr/main: Initialize sys.path and sys.argv.

parent 87e426c7
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,9 @@ soft_reset:
gc_init(heap, heap + sizeof(heap));
#endif
mp_init();
mp_obj_list_init(mp_sys_path, 0);
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_)); // current dir (or base dir of the script)
mp_obj_list_init(mp_sys_argv, 0);
MP_STATE_PORT(mp_kbd_exception) = mp_obj_new_exception(&mp_type_KeyboardInterrupt);
#if MICROPY_MODULE_FROZEN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment