diff options
author | Ilya Dmitrichenko <ilya@xively.com> | 2014-04-21 21:00:23 +0100 |
---|---|---|
committer | Ilya Dmitrichenko <ilya@xively.com> | 2014-04-21 21:04:04 +0100 |
commit | ee857853d60a135685c5088e5492dfe6e8a5acb0 (patch) | |
tree | bf8b8e7978f368b54dfbc33011296d794109f193 /cortex-m3-qemu/gccollect.h | |
parent | 5130b81eecfdd502e8f500f58f39356290f970a3 (diff) | |
download | micropython-ee857853d60a135685c5088e5492dfe6e8a5acb0.tar.gz micropython-ee857853d60a135685c5088e5492dfe6e8a5acb0.zip |
cortex-m3-qemu: refactor the port.
Switch from CodeSourcery to ARM GCC and clean-up some stale files,
also copy `main.c` and `mpconfigport.h` from bare-arm.
Diffstat (limited to 'cortex-m3-qemu/gccollect.h')
-rw-r--r-- | cortex-m3-qemu/gccollect.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/cortex-m3-qemu/gccollect.h b/cortex-m3-qemu/gccollect.h deleted file mode 100644 index 9aa0a44413..0000000000 --- a/cortex-m3-qemu/gccollect.h +++ /dev/null @@ -1,17 +0,0 @@ -// variables defining memory layout -// (these probably belong somewhere else...) -extern uint32_t _etext; -extern uint32_t _sidata; -extern uint32_t _ram_start; -extern uint32_t _sdata; -extern uint32_t _edata; -extern uint32_t _sbss; -extern uint32_t _ebss; -extern uint32_t _heap_start; -extern uint32_t _heap_end; -extern uint32_t _estack; -extern uint32_t _ram_end; - -void gc_collect(void); - -MP_DECLARE_CONST_FUN_OBJ(pyb_gc_obj); |