mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
9 lines
124 B
Raku
9 lines
124 B
Raku
OUTPUT_FORMAT(elf32-i386)
|
|
ENTRY(start)
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text*) }
|
|
.data : { *(.data.*) }
|
|
.bss : { *(.bss.*) }
|
|
}
|