mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-09 17:02:22 +08:00
11 lines
154 B
Plaintext
11 lines
154 B
Plaintext
MEMORY
|
|
{
|
|
region : ORIGIN = 0x40000000, LENGTH = 8M
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : ALIGN (4) { *(.text) } > region
|
|
.rodata : ALIGN (4) { *(.rodata) } > region
|
|
}
|