SummerCart64/fw/cpu/bootloader/prv32_rx.ld
Polprzewodnikowy b1826a9167 goot
2021-08-23 22:30:47 +02:00

17 lines
251 B
Plaintext

MEMORY
{
rom (rx) : org = 0x10000000, len = 128
}
ENTRY(reset_handler)
SECTIONS
{
.rom :
{
. = ALIGN(4);
*(.text .text* .rodata .rodata* .srodata .srodata*)
. = ALIGN(4);
} > rom AT > rom
}