]> git.sur5r.net Git - cc65/blob - cfg/module.cfg
Return after errors, move left bracket consumption down
[cc65] / cfg / module.cfg
1 MEMORY {
2     ZP:                  start = $0000, size = $0100;
3     COMBINED: file = %O, start = $0000, size = $FFFF;
4 }
5 SEGMENTS {
6     ZEROPAGE: load = ZP,       type = zp;
7     EXTZP:    load = ZP,       type = zp, optional = yes;
8     HEADER:   load = COMBINED, type = ro;
9     ONCE:     load = COMBINED, type = ro, optional = yes;
10     CODE:     load = COMBINED, type = ro;
11     RODATA:   load = COMBINED, type = ro;
12     DATA:     load = COMBINED, type = rw;
13     BSS:      load = COMBINED, type = bss;
14 }
15 FILES {
16     %O: format = o65;
17 }
18 FORMATS {
19     o65: os   = cc65,
20          type = small;
21 }