diff options
| author | Brian Pugh <bnp117@gmail.com> | 2024-04-19 16:37:51 -0700 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-05-24 13:50:57 +1000 |
| commit | c624a5c0c4d02fd67e2ad5a0f36a141d2a6ef2ff (patch) | |
| tree | 22ade79dfb47aa3d01fd6fa60c0d2ee0070992c3 /tools/mpy_ld.py | |
| parent | a196468c4752997a11cf06b65cb2147465b7f8eb (diff) | |
py/dynruntime: Export mp_load_method_maybe and mp_arg_parse_all* funcs.
Also define `mp_type_bytearray`. These all help to write native modules.
Signed-off-by: Brian Pugh <bnp117@gmail.com>
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools/mpy_ld.py')
| -rwxr-xr-x | tools/mpy_ld.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mpy_ld.py b/tools/mpy_ld.py index 029b02fa4..7046b6a85 100755 --- a/tools/mpy_ld.py +++ b/tools/mpy_ld.py @@ -52,7 +52,7 @@ MP_SCOPE_FLAG_VIPERRELOC = 0x10 MP_SCOPE_FLAG_VIPERRODATA = 0x20 MP_SCOPE_FLAG_VIPERBSS = 0x40 MP_SMALL_INT_BITS = 31 -MP_FUN_TABLE_MP_TYPE_TYPE_OFFSET = 70 +MP_FUN_TABLE_MP_TYPE_TYPE_OFFSET = 73 # ELF constants R_386_32 = 1 |
