]> git.sur5r.net Git - cc65/blob - cfg/atari-overlay.cfg
Rename 'syschk' symbol in the linker config file, which forces inclusion
[cc65] / cfg / atari-overlay.cfg
1 FEATURES {
2     STARTADDRESS: default = $2000;
3 }
4 SYMBOLS {
5     __STACKSIZE__:       type = weak, value = $0800; # 2k stack
6     __OVERLAYSIZE__:     type = weak, value = $1000; # 4k overlay
7     __STARTADDRESS__:    type = export, value = %S;
8     __RESERVED_MEMORY__: type = weak, value = $0000;
9     __SYSTEM_CHECK__:    type = import;  # force inclusion of "system check" load chunk
10 }
11 MEMORY {
12     ZP:            file = "", define = yes, start = $0082, size = $007E;
13
14 # file header, just $FFFF
15     HEADER:        file = %O,               start = $0000, size = $0002;
16
17 # "system check" load chunk
18     SYSCHKHDR:     file = %O,               start = $0000, size = $0004;
19     SYSCHKCHNK:    file = %O,               start = $2E00, size = $0300;
20     SYSCHKTRL:     file = %O,               start = $0000, size = $0006;
21
22 # "main program" load chunk
23     MAINHDR:       file = %O,               start = $0000, size = $0004;
24     RAM:           file = %O, define = yes, start = %S + __OVERLAYSIZE__,
25                                                            size = $BC20 - __OVERLAYSIZE__ - __STACKSIZE__ - __RESERVED_MEMORY__ - %S;
26     TRAILER:       file = %O,               start = $0000, size = $0006;
27
28     OVL1:          file = "%O.1",           start = %S,    size = __OVERLAYSIZE__;
29     OVL2:          file = "%O.2",           start = %S,    size = __OVERLAYSIZE__;
30     OVL3:          file = "%O.3",           start = %S,    size = __OVERLAYSIZE__;
31     OVL4:          file = "%O.4",           start = %S,    size = __OVERLAYSIZE__;
32     OVL5:          file = "%O.5",           start = %S,    size = __OVERLAYSIZE__;
33     OVL6:          file = "%O.6",           start = %S,    size = __OVERLAYSIZE__;
34     OVL7:          file = "%O.7",           start = %S,    size = __OVERLAYSIZE__;
35     OVL8:          file = "%O.8",           start = %S,    size = __OVERLAYSIZE__;
36     OVL9:          file = "%O.9",           start = %S,    size = __OVERLAYSIZE__;
37 }
38 SEGMENTS {
39     EXEHDR:    load = HEADER,     type = ro;
40     SYSCHKHDR: load = SYSCHKHDR,  type = ro,                optional = yes;
41     SYSCHK:    load = SYSCHKCHNK, type = rw,  define = yes, optional = yes;
42     SYSCHKTRL: load = SYSCHKTRL,  type = ro,                optional = yes;
43     MAINHDR:   load = MAINHDR,    type = ro;
44     STARTUP:   load = RAM,        type = ro,  define = yes;
45     LOWCODE:   load = RAM,        type = ro,  define = yes, optional = yes;
46     INIT:      load = RAM,        type = ro,                optional = yes;
47     CODE:      load = RAM,        type = ro,  define = yes;
48     RODATA:    load = RAM,        type = ro;
49     DATA:      load = RAM,        type = rw;
50     BSS:       load = RAM,        type = bss, define = yes;
51     ZEROPAGE:  load = ZP,         type = zp;
52     EXTZP:     load = ZP,         type = zp,                optional = yes;
53     AUTOSTRT:  load = TRAILER,    type = ro;
54     OVERLAY1:  load = OVL1,       type = ro,  define = yes, optional = yes;
55     OVERLAY2:  load = OVL2,       type = ro,  define = yes, optional = yes;
56     OVERLAY3:  load = OVL3,       type = ro,  define = yes, optional = yes;
57     OVERLAY4:  load = OVL4,       type = ro,  define = yes, optional = yes;
58     OVERLAY5:  load = OVL5,       type = ro,  define = yes, optional = yes;
59     OVERLAY6:  load = OVL6,       type = ro,  define = yes, optional = yes;
60     OVERLAY7:  load = OVL7,       type = ro,  define = yes, optional = yes;
61     OVERLAY8:  load = OVL8,       type = ro,  define = yes, optional = yes;
62     OVERLAY9:  load = OVL9,       type = ro,  define = yes, optional = yes;
63 }
64 FEATURES {
65     CONDES: type    = constructor,
66             label   = __CONSTRUCTOR_TABLE__,
67             count   = __CONSTRUCTOR_COUNT__,
68             segment = INIT;
69     CONDES: type    = destructor,
70             label   = __DESTRUCTOR_TABLE__,
71             count   = __DESTRUCTOR_COUNT__,
72             segment = RODATA;
73     CONDES: type    = interruptor,
74             label   = __INTERRUPTOR_TABLE__,
75             count   = __INTERRUPTOR_COUNT__,
76             segment = RODATA,
77             import  = __CALLIRQ__;
78 }