Simple blit

This commit is contained in:
alpine9000
2016-03-03 14:34:58 +11:00
parent 60eae1cdda
commit 5e7f8feb3e
13 changed files with 279 additions and 166 deletions
+14
View File
@@ -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
}