diff options
Diffstat (limited to 'py/emitnx86.c')
-rw-r--r-- | py/emitnx86.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/emitnx86.c b/py/emitnx86.c index 5d2bbb267..4c192069d 100644 --- a/py/emitnx86.c +++ b/py/emitnx86.c @@ -9,6 +9,9 @@ #define GENERIC_ASM_API (1) #include "py/asmx86.h" +// Word index of REG_LOCAL_1(=ebx) in nlr_buf_t +#define NLR_BUF_IDX_LOCAL_1 (5) + // x86 needs a table to know how many args a given function has STATIC byte mp_f_n_args[MP_F_NUMBER_OF] = { [MP_F_CONVERT_OBJ_TO_NATIVE] = 2, |