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