mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-09-13 03:22:59 +00:00
Refactored slideshow example
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
MEMORY
|
||||
{
|
||||
disk: org = 0x800, len = 0xDB800
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user