]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/module.cfg
Added interrupt handler table
[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 }
13 FILES {
14     %O: format = o65;
15 }
16 FORMATS {
17     o65: os = cc65, type = small;
18 }
19
20