mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +00:00
12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
|
OUTPUT_ARCH(mmix)
|
||
|
OUTPUT_FORMAT("mmo")
|
||
|
ENTRY(Main)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text 0x100 + sizeof_headers :
|
||
|
{ *(.text); Main = _start; }
|
||
|
|
||
|
.MMIX.reg_contents :
|
||
|
{ *(.MMIX.reg_contents); }
|
||
|
}
|