mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
|
ENTRY(__start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x0400000;
|
||
|
.text : { *(.text) }
|
||
|
. = 0x0800000;
|
||
|
.rodata : { *(.rodata.*) }
|
||
|
/DISCARD/ : { *(*) }
|
||
|
}
|