ys2-intro/loader/samples/minexample/bin.cfg
2025-11-29 10:27:57 +07:00

12 lines
440 B
INI

MEMORY {
ZP: file = "", start = $0002, size = $00FE, define = yes;
MAIN: file = %O, start = $E000, size = $1FFA;
}
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;
}