diff options
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 425122dbc2..542edf4a62 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -96,8 +96,8 @@ typedef enum { } mp_binary_op_t; typedef enum { - MP_F_LOAD_CONST_DEC = 0, - MP_F_LOAD_CONST_INT, + MP_F_LOAD_CONST_INT = 0, + MP_F_LOAD_CONST_DEC, MP_F_LOAD_CONST_STR, MP_F_LOAD_NAME, MP_F_LOAD_GLOBAL, |