19 lines
388 B
INI
19 lines
388 B
INI
MEMORY {
|
|
COMBINED: start = $0000, size = $FFFF, file = %O;
|
|
}
|
|
SEGMENTS {
|
|
ZEROPAGE: load = COMBINED, type = zp;
|
|
CODE: load = COMBINED, type = wprot;
|
|
RODATA: load = COMBINED, type = wprot;
|
|
DATA: load = COMBINED, type = rw, define = yes;
|
|
BSS: load = COMBINED, type = bss, define = yes;
|
|
}
|
|
FILES {
|
|
%O: format = o65;
|
|
}
|
|
FORMATS {
|
|
o65: os = cc65, type = small;
|
|
}
|
|
|
|
|