First attemp at scrolling text

This commit is contained in:
alpine9000
2016-03-31 13:36:24 +11:00
parent 160b78f30a
commit f7d6840c3c
15 changed files with 1020 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
MEMORY
{
disk: org = 0x4000, len = 901120-0x4000
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;
}