Files
AmigaExamples/examples/link.script
T
2016-03-03 14:34:58 +11:00

15 lines
194 B
Plaintext

MEMORY
{
ram: org = 0x70000, len = 0x100000
}
SECTIONS
{
.text : { *(.text) } > ram
.bss : { *(.bss) } > ram
.data : { *(.data) } > ram
CODE : { *(CODE) } > ram
DATA : { *(DATA) } > ram
}