mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-23 14:29:14 +01:00
17 lines
251 B
Plaintext
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
|
|
}
|