]> git.sur5r.net Git - cc65/blob - cfg/atari-overlay.cfg
rearranged order of new optimizations to better handle -Oi flag
[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     LOWBSS:    load = MAIN,       type = rw,                optional = yes;  # not zero initialized
50     LOWCODE:   load = MAIN,       type = ro,  define = yes, optional = yes;
51     ONCE:      load = MAIN,       type = ro,                optional = yes;
52     CODE:      load = MAIN,       type = ro,  define = yes;
53     RODATA:    load = MAIN,       type = ro;
54     DATA:      load = MAIN,       type = rw;
55     INIT:      load = MAIN,       type = rw,                optional = yes;
56     BSS:       load = MAIN,       type = bss, define = yes;
57     AUTOSTRT:  load = TRAILER,    type = ro;
58     OVERLAY1:  load = OVL1,       type = ro,  define = yes, optional = yes;
59     OVERLAY2:  load = OVL2,       type = ro,  define = yes, optional = yes;
60     OVERLAY3:  load = OVL3,       type = ro,  define = yes, optional = yes;
61     OVERLAY4:  load = OVL4,       type = ro,  define = yes, optional = yes;
62     OVERLAY5:  load = OVL5,       type = ro,  define = yes, optional = yes;
63     OVERLAY6:  load = OVL6,       type = ro,  define = yes, optional = yes;
64     OVERLAY7:  load = OVL7,       type = ro,  define = yes, optional = yes;
65     OVERLAY8:  load = OVL8,       type = ro,  define = yes, optional = yes;
66     OVERLAY9:  load = OVL9,       type = ro,  define = yes, optional = yes;
67 }
68 FEATURES {
69     CONDES: type    = constructor,
70             label   = __CONSTRUCTOR_TABLE__,
71             count   = __CONSTRUCTOR_COUNT__,
72             segment = ONCE;
73     CONDES: type    = destructor,
74             label   = __DESTRUCTOR_TABLE__,
75             count   = __DESTRUCTOR_COUNT__,
76             segment = RODATA;
77     CONDES: type    = interruptor,
78             label   = __INTERRUPTOR_TABLE__,
79             count   = __INTERRUPTOR_COUNT__,
80             segment = RODATA,
81             import  = __CALLIRQ__;
82 }