]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/apple2.cfg
Move the constructor tables into the INIT segment
[cc65] / src / ld65 / cfg / apple2.cfg
1 MEMORY {
2     ZP:     start = $0000, size = $001A, type = rw, define = yes;
3     HEADER: start = $0000, size = $0004, file = %O;
4     RAM:    start = $0800, size = $8E00, file = %O;
5 }
6 SEGMENTS {
7     EXEHDR:   load = HEADER, type = ro;
8     STARTUP:  load = RAM,    type = ro, define = yes;
9     LOWCODE:  load = RAM,    type = ro,               optional = yes;
10     INIT:     load = RAM,    type = ro, define = yes, optional = yes;
11     CODE:     load = RAM,    type = ro;
12     RODATA:   load = RAM,    type = ro;
13     DATA:     load = RAM,    type = rw;
14     BSS:      load = RAM,    type = bss, define = yes;
15     ZEROPAGE: load = ZP,     type = zp;
16 }
17 FEATURES {
18     CONDES: segment = INIT,
19             type = constructor,
20             label = __CONSTRUCTOR_TABLE__,
21             count = __CONSTRUCTOR_COUNT__;
22     CONDES: segment = RODATA,
23             type = destructor,
24             label = __DESTRUCTOR_TABLE__,
25             count = __DESTRUCTOR_COUNT__;
26 }
27 SYMBOLS {
28     __STACKSIZE__ = $800;       # 2K stack
29 }
30
31