diff options
Diffstat (limited to 'stm/gccollect.h')
-rw-r--r-- | stm/gccollect.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/stm/gccollect.h b/stm/gccollect.h deleted file mode 100644 index a6471bf2e5..0000000000 --- a/stm/gccollect.h +++ /dev/null @@ -1,17 +0,0 @@ -// variables defining memory layout -// (these probably belong somewhere else...) -extern uint32_t _text_end; -extern uint32_t _data_start_init; -extern uint32_t _ram_start; -extern uint32_t _data_start; -extern uint32_t _data_end; -extern uint32_t _bss_start; -extern uint32_t _bss_end; -extern uint32_t _heap_start; -extern uint32_t _heap_end; -extern uint32_t _stack_end; -extern uint32_t _ram_end; - -void gc_collect(void); - -MP_DECLARE_CONST_FUN_OBJ(pyb_gc_obj); |