mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
12 lines
145 B
Perl
12 lines
145 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
def1 = DEFINED(foo) ? 0x10 : 0x20;
|
||
|
def2 = def1;
|
||
|
. = 0x10001;
|
||
|
foo = .;
|
||
|
. += 0x200;
|
||
|
bar = .;
|
||
|
. = ALIGN (4);
|
||
|
frob = .;
|
||
|
}
|