diff options
author | 2022-01-12 01:22:35 +0000 | |
---|---|---|
committer | 2022-01-12 01:22:35 +0000 | |
commit | 91f69a92f347d76402c04a590e515f0e83355acb (patch) | |
tree | 2e6381cd7596ed7f2bb7f88b2ab223cd389f34cd /cortex-m-rt | |
parent | 38897fa7a2ecd726c63291822cc259ffee73d698 (diff) | |
download | cortex-m-91f69a92f347d76402c04a590e515f0e83355acb.tar.gz cortex-m-91f69a92f347d76402c04a590e515f0e83355acb.tar.zst cortex-m-91f69a92f347d76402c04a590e515f0e83355acb.zip |
Move examples' memory.x to workspace root
Diffstat (limited to 'cortex-m-rt')
-rw-r--r-- | cortex-m-rt/memory.x | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/cortex-m-rt/memory.x b/cortex-m-rt/memory.x deleted file mode 100644 index 82cf9c7..0000000 --- a/cortex-m-rt/memory.x +++ /dev/null @@ -1,23 +0,0 @@ -/* Device specific memory layout */ - -/* This file is used to build the cortex-m-rt examples, - but not other applications using cortex-m-rt. */ - -MEMORY -{ - /* FLASH and RAM are mandatory memory regions */ - /* Update examples/data_overflow.rs if you change these sizes. */ - FLASH : ORIGIN = 0x00000000, LENGTH = 256K - RAM : ORIGIN = 0x20000000, LENGTH = 64K - - /* More memory regions can declared: for example this is a second RAM region */ - /* CCRAM : ORIGIN = 0x10000000, LENGTH = 8K */ -} - -/* The location of the stack can be overridden using the `_stack_start` symbol. - By default it will be placed at the end of the RAM region */ -/* _stack_start = ORIGIN(CCRAM) + LENGTH(CCRAM); */ - -/* The location of the .text section can be overridden using the `_stext` symbol. - By default it will place after .vector_table */ -/* _stext = ORIGIN(FLASH) + 0x40c; */ |