mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
12 lines
160 B
Plaintext
12 lines
160 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0x80;
|
|
.far : { *(.far) *(COMMON) }
|
|
. = 0x100;
|
|
.bss : { *(.scommon) }
|
|
|
|
. = 0x10000000;
|
|
.text : { *(.text*) }
|
|
/DISCARD/ : { *(*) }
|
|
}
|