diff options
| author | Damien George <damien.p.george@gmail.com> | 2015-11-27 13:38:15 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2015-11-29 14:25:04 +0000 |
| commit | cbf7674025814797f5c537d6d1c195efe58ccaaf (patch) | |
| tree | 7c1e5d7956d3766dad4c194ab00024e2a954bcf9 /py/runtime.h | |
| parent | 94fe6e523d42ecc342c1f6a9734ed2edf232ddbd (diff) | |
py: Add MP_ROM_* macros and mp_rom_* types and use them.
Diffstat (limited to 'py/runtime.h')
| -rw-r--r-- | py/runtime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime.h b/py/runtime.h index 2282ea02c..144961966 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -48,6 +48,7 @@ typedef union _mp_arg_val_t { bool u_bool; mp_int_t u_int; mp_obj_t u_obj; + mp_rom_obj_t u_rom_obj; } mp_arg_val_t; typedef struct _mp_arg_t { |
