mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-09-12 20:52:29 +00:00
Simple blit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
MEMORY
|
||||
{
|
||||
ram: org = 0x70000, len = 0x100000
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.text : { *(.text) } > ram
|
||||
.bss : { *(.bss) } > ram
|
||||
.data : { *(.data) } > ram
|
||||
CODE : { *(CODE) } > ram
|
||||
DATA : { *(DATA) } > ram
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user