mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2026-04-19 08:27:40 +00:00
forgot atari2600-ecs.cfg
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user