Files
AmigaExamples/023.slideshow/link.script
T
2016-03-20 21:13:47 +11:00

27 lines
333 B
Plaintext

MEMORY
{
ram: org = 0x10000, len = 0x100000
}
SECTIONS
{
load : {
startCode = .;
*(.text)
*(.bss)
*(.data)
*(CODE)
*(DATA)
. = . + 0x1000;
userstack = .;
endCode = .;
} > ram
photo ALIGN(512) : {
startData = .;
*(.photo)
endData = .;
} > ram
}