]> git.sur5r.net Git - cc65/blob - cfg/c64-asm.cfg
Separate header and trailers of Atari system_check chunk.
[cc65] / cfg / c64-asm.cfg
1 FEATURES {
2     STARTADDRESS: default = $0801;
3 }
4 SYMBOLS {
5     __LOADADDR__: type = import;
6 }
7 MEMORY {
8     ZP:       file = "", start = $0002,  size = $00FE,      define = yes;
9     LOADADDR: file = %O, start = %S - 2, size = $0002;
10     MAIN:     file = %O, start = %S,     size = $D000 - %S;
11 }
12 SEGMENTS {
13     ZEROPAGE: load = ZP,       type = zp,  optional = yes;
14     LOADADDR: load = LOADADDR, type = ro;
15     EXEHDR:   load = MAIN,     type = ro,  optional = yes;
16     CODE:     load = MAIN,     type = rw;
17     RODATA:   load = MAIN,     type = ro,  optional = yes;
18     DATA:     load = MAIN,     type = rw,  optional = yes;
19     BSS:      load = MAIN,     type = bss, optional = yes, define = yes;
20 }