1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-20 00:17:04 +00:00

forgot atari2600-ecs.cfg

This commit is contained in:
Steven Hugg
2025-10-22 11:24:05 -05:00
parent 1a313b37ae
commit 69e2be6f70
2 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ system Kernel2Sprite
iny
sty VDELP1
---
on kernel do critical with [KernelSection]
on kernel do critical fit $100 with [KernelSection]
---
ldy {{<lines}}
@LVScan:
+19
View File
@@ -0,0 +1,19 @@
SYMBOLS {
__STACKSIZE__: type = weak, value = $0010; # 16 Bytes system stack
}
MEMORY {
RAM: file = "", start = $0080, size = $0080 - __STACKSIZE__, define = yes;
ROM: file = %O, start = $F000, size = $1000, fill = yes, fillval = $FF;
}
SEGMENTS {
ZEROPAGE: load = RAM, type = zp;
STARTUP: load = ROM, type = ro;
CODE: load = ROM, type = ro;
RODATA: load = ROM, type = ro, optional = yes, align = $100;
DATA: load = ROM, run = RAM, type = rw, optional = yes, define = yes;
BSS: load = RAM, type = bss, optional = yes;
VECTORS: load = ROM, type = ro, start = $FFFA;
}