You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
65cad12d38
Also add command line option to unix port to select emitter.
10 lines
229 B
C
10 lines
229 B
C
enum {
|
|
MP_EMIT_OPT_NONE,
|
|
MP_EMIT_OPT_BYTE_CODE,
|
|
MP_EMIT_OPT_NATIVE_PYTHON,
|
|
MP_EMIT_OPT_VIPER,
|
|
MP_EMIT_OPT_ASM_THUMB,
|
|
};
|
|
|
|
mp_obj_t mp_compile(mp_parse_node_t pn, qstr source_file, uint emit_opt, bool is_repl);
|