Added george binary, asm, and memory config for ld65

This commit is contained in:
2024-02-02 13:44:15 -05:00
parent 8422925312
commit e69a79b5a4
4 changed files with 64 additions and 41 deletions
+10
View File
@@ -0,0 +1,10 @@
MEMORY {
RAM: start = $0000, size = $4000, type = rw, fill = true;
CTRL: start = $4000, size = $2000, type = rw, fill = true;
VRAM: start = $6000, size = $8000, type = rw, fill = true;
ROM: start = $E000, size = $2000, type = ro, fill = true;
}
SEGMENTS {
CODE: load = "RAM", type = rw;
}