mirror of
https://github.com/autc04/Retro68.git
synced 2026-04-20 17:20:09 +00:00
9 lines
153 B
Raku
9 lines
153 B
Raku
SECTIONS {
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
}
|
|
sym1 = 0x42;
|
|
sym2 = 0x43;
|
|
defined = DEFINED (sym1) ? sym1 : sym2;
|