1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2026-01-12 15:20:05 +00:00
Files
AmigaExamples/027.parallax/link.script.x
alpine9000 fc6ed3a4b6 Small fix
2016-04-14 15:53:13 +10:00

28 lines
420 B
Plaintext

MEMORY
{
disk: org = 0x4000, len = 901120-0x4000
ram: org = 0x00000, len = 0x80000
}
SECTIONS
{
load : {
startCode = .;
*(.text)
*(.data)
*(CODE)
*(DATA)
endCode = .;
} > disk
noload ALIGN(512) : {
startData = .;
*(.noload)
endData = .;
} > disk
bss (NOLOAD) : {
. = endCode;
*(.bss)
} > ram;
}