mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
10 lines
198 B
Plaintext
10 lines
198 B
Plaintext
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
.text : { *(.text) }
|
|
. = . + 0x2000000 + 32 - 4 * SIZEOF (.text);
|
|
.far1 : { *(.far1) }
|
|
. = . + 0x2000000 + 32 - 4 * SIZEOF (.far1);
|
|
.far2 : { *(.far2) }
|
|
}
|