mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
10 lines
151 B
Plaintext
10 lines
151 B
Plaintext
OUTPUT_FORMAT("elf32-m68k", "elf32-m68k",
|
|
"elf32-m68k")
|
|
OUTPUT_ARCH(m68k)
|
|
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
|
|
.text : {_start = .; *(.text)}
|
|
}
|