mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
Make rt_fun_table const, so it goes in .text section.
This commit is contained in:
@@ -76,7 +76,7 @@ typedef enum {
|
||||
RT_F_NUMBER_OF,
|
||||
} rt_fun_kind_t;
|
||||
|
||||
extern void *rt_fun_table[RT_F_NUMBER_OF];
|
||||
extern const void *const rt_fun_table[RT_F_NUMBER_OF];
|
||||
|
||||
typedef machine_ptr_t py_obj_t; // must be of pointer size
|
||||
typedef py_obj_t (*py_fun_0_t)();
|
||||
|
||||
Reference in New Issue
Block a user