ys2-intro/loader/samples/minexample/test/bin.cfg

12 lines
440 B
INI
Raw Normal View History

2025-11-28 22:27:57 -05:00
MEMORY {
ZP: file = "", start = $0002, size = $00FE, define = yes;
MAIN: file = %O, start = $0BFE, size = $C402;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp, optional = yes;
CODE: load = MAIN, type = rw;
RODATA: load = MAIN, type = ro, optional = yes;
DATA: load = MAIN, type = rw, optional = yes;
BSS: load = MAIN, type = bss, optional = yes, define = yes;
}