mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
17 lines
184 B
Plaintext
17 lines
184 B
Plaintext
/* Script for ld testsuite */
|
|
OUTPUT_ARCH(arm)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.after1)
|
|
*(.after2)
|
|
*(.after3)
|
|
*(.after4)
|
|
*(.after5)
|
|
} =0
|
|
}
|
|
|