diff options
-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 */ |