mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
305 B
10 lines
305 B
|
|
MEMORY
|
|
{
|
|
/* Reserve exactly 256 bytes at start of flash for second stage bootloader */
|
|
BOOT2_TEXT (rx) : ORIGIN = 0x10000000, LENGTH = 256
|
|
FLASH_TEXT (rx) : ORIGIN = 0x10000000 + 256, LENGTH = 8192K - 256
|
|
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 256k
|
|
}
|
|
|
|
INCLUDE "targets/rp2040.ld"
|