mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 18:34:45 +00:00
9 lines
124 B
Perl
9 lines
124 B
Perl
|
OUTPUT_FORMAT(elf32-i386)
|
||
|
ENTRY(start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text : { *(.text*) }
|
||
|
.data : { *(.data.*) }
|
||
|
.bss : { *(.bss.*) }
|
||
|
}
|