mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-09-12 15:31:52 +00:00
15 lines
194 B
Plaintext
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
|
|
}
|
|
|