mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-27 20:33:00 +00:00
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
|
OUTPUT_ARCH(mmix)
|
||
|
ENTRY(Main)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text 0x101 : /* Note the misaligned address; must trig a linker error. */
|
||
|
{ *(.text*); Main = _start; }
|
||
|
|
||
|
.MMIX.reg_contents :
|
||
|
{ *(.MMIX.reg_contents.linker_allocated); *(.MMIX.reg_contents); }
|
||
|
}
|