]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/module.cfg
Added configuration for cc65 modules
[cc65] / src / ld65 / cfg / module.cfg
1 MEMORY {
2     COMBINED: start = $0000, size = $FFFF, file = %O;
3 }
4 SEGMENTS {
5     ZEROPAGE: load = COMBINED, type = zp;
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 }
11 FILES {
12     %O: format = o65;
13 }
14 FORMATS {
15     o65: os = cc65, type = small;
16 }
17
18