1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2025-11-22 10:10:37 +00:00
Files
AmigaExamples/023.slideshow/link.script.x

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;
}