aboutsummaryrefslogtreecommitdiff
path: root/examples/rp
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2023-11-04 13:17:54 +0100
committerJames Munns <[email protected]>2023-11-19 23:10:11 +0100
commit30424d83ff127506cff088a9b8a6e9079ca5d3e9 (patch)
treee6aad781dbf35bd6ae627a9c8158fba1ed6fca64 /examples/rp
parente3be0b957a88a4ce1e2d9b696657c8d6186e3116 (diff)
Update RP2040 memory.x
The RP2040 has 264KiB of memory, not 256KiB.
Diffstat (limited to 'examples/rp')
-rw-r--r--examples/rp/memory.x4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rp/memory.x b/examples/rp/memory.x
index aba861aae..6ed984938 100644
--- a/examples/rp/memory.x
+++ b/examples/rp/memory.x
@@ -1,5 +1,5 @@
1MEMORY { 1MEMORY {
2 BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100 2 BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100
3 FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100 3 FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100
4 RAM : ORIGIN = 0x20000000, LENGTH = 256K 4 RAM : ORIGIN = 0x20000000, LENGTH = 264K
5} \ No newline at end of file 5}