diff options
Diffstat (limited to 'py/bc0.h')
-rw-r--r-- | py/bc0.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -80,8 +80,6 @@ #define MP_BC_POP_EXCEPT (0x45) #define MP_BC_UNWIND_JUMP (0x46) // rel byte code offset, 16-bit signed, in excess; then a byte -#define MP_BC_NOT (0x47) - #define MP_BC_BUILD_TUPLE (0x50) // uint #define MP_BC_BUILD_LIST (0x51) // uint #define MP_BC_LIST_APPEND (0x52) // uint @@ -115,7 +113,7 @@ #define MP_BC_LOAD_CONST_SMALL_INT_MULTI (0x70) // + N(64) #define MP_BC_LOAD_FAST_MULTI (0xb0) // + N(16) #define MP_BC_STORE_FAST_MULTI (0xc0) // + N(16) -#define MP_BC_UNARY_OP_MULTI (0xd0) // + op(6) -#define MP_BC_BINARY_OP_MULTI (0xd6) // + op(36) +#define MP_BC_UNARY_OP_MULTI (0xd0) // + op(7) +#define MP_BC_BINARY_OP_MULTI (0xd7) // + op(36) #endif // __MICROPY_INCLUDED_PY_BC0_H__ |