SummerCart64/fw/btldr/btldr.ld
Polprzewodnikowy 0992680dd7 good
2021-08-18 13:54:07 +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
}