mirror of
https://github.com/brain-hackers/lab
synced 2026-03-11 21:54:18 +09:00
15 lines
210 B
Plaintext
15 lines
210 B
Plaintext
OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
|
|
"elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
ENTRY(main)
|
|
|
|
SECTIONS
|
|
{
|
|
.text 0x90000000:
|
|
{
|
|
*(.text.init)
|
|
*(.text)
|
|
*(.text.*)
|
|
}
|
|
}
|