]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/module.cfg
New module strstack
[cc65] / src / ld65 / cfg / module.cfg
1 MEMORY {
2     ZP: start = $0000, size = $0100, type = rw, define = yes;
3     COMBINED: start = $0000, size = $FFFF, file = %O;
4 }
5 SEGMENTS {
6     JUMPTABLE: load = COMBINED, type = wprot;
7     CODE: load = COMBINED, type = wprot;
8     RODATA: load = COMBINED, type = wprot;
9     DATA: load = COMBINED, type = rw, define = yes;
10     BSS: load = COMBINED, type = bss, define = yes;
11     ZEROPAGE: load = ZP, type = zp;
12     EXTZP: load = ZP, type = zp;
13 }
14 FILES {
15     %O: format = o65;
16 }
17 FORMATS {
18     o65: os = cc65, type = small;
19 }
20
21