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