11 lines
281 B
INI
11 lines
281 B
INI
MEMORY {
|
|
ZP: start = $00, size = $100, type = rw, define = yes;
|
|
RAM: start = $07ff, size = $9801, define = yes, file = %O;
|
|
}
|
|
SEGMENTS {
|
|
CODE: load = RAM, type = ro;
|
|
DATA: load = RAM, type = rw;
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
}
|