]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/atari.cfg
add EXTZP segment
[cc65] / src / ld65 / cfg / atari.cfg
1 MEMORY {
2     ZP:     start = $0082, size = $007E, type = rw, define = yes;
3     HEADER: start = $0000, size = $0006, file = %O;
4     RAM:    start = $2E00, size = $8E20, file = %O;    # $8E20: matches upper bound $BC1F
5 }
6 SEGMENTS {
7     EXEHDR:   load = HEADER, type = ro;
8     LOWCODE:  load = RAM,    type = ro, define = yes, optional = yes;
9     INIT:     load = RAM,    type = ro,               optional = yes;
10     CODE:     load = RAM,    type = ro;
11     RODATA:   load = RAM,    type = ro;
12     DATA:     load = RAM,    type = rw;
13     BSS:      load = RAM,    type = bss, define = yes;
14     HEAP:     load = RAM,    type = bss, optional = yes; # must sit just below stack
15     ZEROPAGE: load = ZP,     type = zp;
16     EXTZP:    load = ZP,     type = zp,               optional = yes;
17     AUTOSTRT: load = RAM,    type = ro;
18 }
19 FEATURES {
20     CONDES: segment = INIT,
21             type = constructor,
22             label = __CONSTRUCTOR_TABLE__,
23             count = __CONSTRUCTOR_COUNT__;
24     CONDES: segment = RODATA,
25             type = destructor,
26             label = __DESTRUCTOR_TABLE__,
27             count = __DESTRUCTOR_COUNT__;
28     CONDES: type = interruptor,
29             segment = RODATA,
30             label = __INTERRUPTOR_TABLE__,
31             count = __INTERRUPTOR_COUNT__;
32 }
33 SYMBOLS {
34     __STACKSIZE__ = $800;       # 2K stack
35 }