diff options
author | 2018-09-19 10:11:51 +0900 | |
---|---|---|
committer | 2018-09-19 10:11:51 +0900 | |
commit | e7904c0754ad6970fe5923cceeb0595322ff899f (patch) | |
tree | 02aa490dc63773574f02fda3616e89495a8e0cf4 | |
parent | 03f9290a06bb63fc11436631a1c311299ed9efad (diff) | |
download | cortex-m-e7904c0754ad6970fe5923cceeb0595322ff899f.tar.gz cortex-m-e7904c0754ad6970fe5923cceeb0595322ff899f.tar.zst cortex-m-e7904c0754ad6970fe5923cceeb0595322ff899f.zip |
[rust/ci/qemu] adjust to match the memory layout of `lm3s6965evb`
See:
https://github.com/japaric/lm3s6965evb/blob/9eeea58826438e84d89e9691a1bb0f85b03d377c/memory.x#L4-L5
-rw-r--r-- | cortex-m-rt/memory.x | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cortex-m-rt/memory.x b/cortex-m-rt/memory.x index 6268ea6..82cf9c7 100644 --- a/cortex-m-rt/memory.x +++ b/cortex-m-rt/memory.x @@ -7,8 +7,8 @@ MEMORY { /* FLASH and RAM are mandatory memory regions */ /* Update examples/data_overflow.rs if you change these sizes. */ - FLASH : ORIGIN = 0x08000000, LENGTH = 64K - RAM : ORIGIN = 0x20000000, LENGTH = 20K + 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 */ |