mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
12 lines
199 B
Plaintext
12 lines
199 B
Plaintext
MEMORY
|
|
{
|
|
region : ORIGIN = 0x40000000, LENGTH = 8M
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : ALIGN (4) { *(.text) } > region
|
|
.rodata : ALIGN (4) { *(.rodata) } > region
|
|
/DISCARD/ : { *(.reginfo) *(.trampolines) }
|
|
}
|