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