diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-01-29 13:35:22 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-01-29 13:35:22 -0800 |
| commit | d655c785b6b2501476f1c14caee0e87694df0efe (patch) | |
| tree | f34739bba8586d9413db273f1d775525b26f4c0b /py/vmentrytable.h | |
| parent | 5e789b38504846982a8cd7fa447297a51efc8352 (diff) | |
| parent | b36b2493bced9ca127803b307f0c6df52c9568f0 (diff) | |
Merge commit 'b36b24' into tweak_pixelbuf
Diffstat (limited to 'py/vmentrytable.h')
| -rw-r--r-- | py/vmentrytable.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/py/vmentrytable.h b/py/vmentrytable.h index a0e2d4065..31a96dbec 100644 --- a/py/vmentrytable.h +++ b/py/vmentrytable.h @@ -29,7 +29,9 @@ #pragma clang diagnostic ignored "-Winitializer-overrides" #endif // __clang__ -static const void *const entry_table[256] = { +#include "supervisor/linker.h" + +static const void *const PLACE_IN_DTCM_DATA(entry_table[256]) = { [0 ... 255] = &&entry_default, [MP_BC_LOAD_CONST_FALSE] = &&entry_MP_BC_LOAD_CONST_FALSE, [MP_BC_LOAD_CONST_NONE] = &&entry_MP_BC_LOAD_CONST_NONE, |
