You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
312 B
15 lines
312 B
// thumb specific stuff
|
|
|
|
#include "py/mpconfig.h"
|
|
|
|
#if MICROPY_EMIT_THUMB
|
|
|
|
// this is defined so that the assembler exports generic assembler API macros
|
|
#define GENERIC_ASM_API (1)
|
|
#include "py/asmthumb.h"
|
|
|
|
#define N_THUMB (1)
|
|
#define EXPORT_FUN(name) emit_native_thumb_##name
|
|
#include "py/emitnative.c"
|
|
|
|
#endif
|
|
|