mirror of
https://github.com/micropython/micropython.git
synced 2025-09-08 02:40:55 +02:00
Byte code has a map from byte-code offset to source-code line number, used to give better error messages.
3 lines
213 B
C
3 lines
213 B
C
mp_obj_t mp_execute_byte_code(const byte *code, const mp_obj_t *args, uint n_args, 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);
|