mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-09-12 09:01:24 +00:00
25 lines
290 B
Plaintext
25 lines
290 B
Plaintext
MEMORY
|
|
{
|
|
ram: org = 0x10000, len = 0x100000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
load : {
|
|
startCode = .;
|
|
*(.text)
|
|
*(.bss)
|
|
*(.data)
|
|
*(CODE)
|
|
*(DATA)
|
|
endCode = .;
|
|
} > ram
|
|
|
|
photo ALIGN(512) : {
|
|
startData = .;
|
|
*(.photo)
|
|
endData = .;
|
|
} > ram
|
|
}
|
|
|