mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 05:00:26 +01:00
Add support for inline thumb assembly.
This commit is contained in:
@@ -87,8 +87,9 @@ extern py_obj_t py_const_true;
|
||||
void rt_init();
|
||||
void rt_deinit();
|
||||
int rt_get_new_unique_code_id();
|
||||
void rt_assign_native_code(int unique_code_id, py_fun_t f, uint len, int n_args);
|
||||
void rt_assign_byte_code(int unique_code_id, byte *code, uint len, int n_args);
|
||||
void rt_assign_native_code(int unique_code_id, py_fun_t f, uint len, int n_args);
|
||||
void rt_assign_inline_asm_code(int unique_code_id, py_fun_t f, uint len, int n_args);
|
||||
py_fun_t rt_get_code(qstr id);
|
||||
void py_obj_print(py_obj_t o);
|
||||
int rt_is_true(py_obj_t arg);
|
||||
|
||||
Reference in New Issue
Block a user