SummerCart64/fw/btldr/btldr.ld

17 lines
251 B
Plaintext
Raw Normal View History

2021-08-05 19:50:29 +02:00
MEMORY
{
2021-08-18 13:54:07 +02:00
rom (rx) : org = 0x10000000, len = 128
2021-08-05 19:50:29 +02:00
}
2021-08-18 13:54:07 +02:00
ENTRY(reset_handler)
2021-08-05 19:50:29 +02:00
SECTIONS
{
2021-08-18 13:54:07 +02:00
.rom :
2021-08-05 19:50:29 +02:00
{
. = ALIGN(4);
*(.text .text* .rodata .rodata* .srodata .srodata*)
. = ALIGN(4);
} > rom AT > rom
}