]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/lunix.cfg
Moved the target configurations into separate files
[cc65] / src / ld65 / cfg / lunix.cfg
1 MEMORY {
2     COMBINED: start = $0000, size = $FFFF, file = %O;
3     ZEROPAGE: start = $0000, size = $0100, file = %O;
4 }
5 SEGMENTS {
6     CODE: load = COMBINED, type = wprot;
7     RODATA: load = COMBINED, type = wprot;
8     DATA: load = COMBINED, type = rw, define = yes;
9     BSS: load = COMBINED, type = bss, define = yes;
10     ZEROPAGE: load = ZEROPAGE, type = zp;
11 }
12 FILES {
13     %O: format = o65;
14 }
15 FORMATS {
16     o65: os = lunix, type = small, extsym = "LUNIXKERNAL", extsym = "LIB6502";
17 }