]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/apple2.cfg
Use the new linker features in apple2.cfg. This makes apple2-tgi.cfg
[cc65] / src / ld65 / cfg / apple2.cfg
1 FEATURES {
2     STARTADDRESS: default = $0800;
3 }
4 MEMORY {
5     ZP:     start = $0080, size = $001A,      define = yes;
6     HEADER: start = $0000, size = $0004,      file = %O;
7     RAM:    start = %S,    size = $9600 - %S, file = %O;
8 }
9 SEGMENTS {
10     EXEHDR:   load = HEADER, type = ro;
11     STARTUP:  load = RAM,    type = ro, define = yes;
12     LOWCODE:  load = RAM,    type = ro,               optional = yes;
13     INIT:     load = RAM,    type = ro, define = yes, optional = yes;
14     CODE:     load = RAM,    type = ro;
15     RODATA:   load = RAM,    type = ro;
16     DATA:     load = RAM,    type = rw;
17     BSS:      load = RAM,    type = bss, define = yes;
18     HEAP:     load = RAM,    type = bss, optional = yes; # must sit just below stack
19     ZEROPAGE: load = ZP,     type = zp;
20 }
21 FEATURES {
22     CONDES: segment = INIT,
23             type    = constructor,
24             label   = __CONSTRUCTOR_TABLE__,
25             count   = __CONSTRUCTOR_COUNT__;
26     CONDES: segment = RODATA,
27             type    = destructor,
28             label   = __DESTRUCTOR_TABLE__,
29             count   = __DESTRUCTOR_COUNT__;
30     CONDES: type    = interruptor,
31             segment = RODATA,
32             label   = __INTERRUPTOR_TABLE__,
33             count   = __INTERRUPTOR_COUNT__;
34 }
35 SYMBOLS {
36     __STACKSIZE__ = $800;       # 2K stack
37 }