mirror of
https://github.com/jam422470459/EPD-nRF52-hema213.git
synced 2025-12-17 13:58:14 +08:00
14 lines
236 B
Plaintext
14 lines
236 B
Plaintext
/* Linker script to configure memory regions. */
|
|
|
|
SEARCH_DIR(.)
|
|
GROUP(-lgcc -lc -lnosys)
|
|
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x100000
|
|
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x40000
|
|
}
|
|
|
|
|
|
INCLUDE "nrf52_common.ld"
|