Update RP2040 memory.x

The RP2040 has 264KiB of memory, not 256KiB.
This commit is contained in:
James Munns 2023-11-04 13:17:54 +01:00
parent e3be0b957a
commit 30424d83ff

View File

@ -1,5 +1,5 @@
MEMORY {
BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100
FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100
RAM : ORIGIN = 0x20000000, LENGTH = 256K
}
RAM : ORIGIN = 0x20000000, LENGTH = 264K
}