]> git.sur5r.net Git - cc65/blob - cfg/atari-overlay.cfg
Put EXE header and main chunk load header into a single file --
[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     RAM:           file = %O, define = yes, start = %S + __OVERLAYSIZE__,
27                                                            size = $BC20 - __OVERLAYSIZE__ - __STACKSIZE__ - __RESERVED_MEMORY__ - %S;
28     TRAILER:       file = %O,               start = $0000, size = $0006;
29
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     EXEHDR:    load = HEADER,     type = ro;
42     SYSCHKHDR: load = SYSCHKHDR,  type = ro,                optional = yes;
43     SYSCHK:    load = SYSCHKCHNK, type = rw,  define = yes, optional = yes;
44     SYSCHKTRL: load = SYSCHKTRL,  type = ro,                optional = yes;
45     MAINHDR:   load = MAINHDR,    type = ro;
46     STARTUP:   load = RAM,        type = ro,  define = yes;
47     LOWCODE:   load = RAM,        type = ro,  define = yes, optional = yes;
48     INIT:      load = RAM,        type = ro,                optional = yes;
49     CODE:      load = RAM,        type = ro,  define = yes;
50     RODATA:    load = RAM,        type = ro;
51     DATA:      load = RAM,        type = rw;
52     BSS:       load = RAM,        type = bss, define = yes;
53     ZEROPAGE:  load = ZP,         type = zp;
54     EXTZP:     load = ZP,         type = zp,                optional = yes;
55     AUTOSTRT:  load = TRAILER,    type = ro;
56     OVERLAY1:  load = OVL1,       type = ro,  define = yes, optional = yes;
57     OVERLAY2:  load = OVL2,       type = ro,  define = yes, optional = yes;
58     OVERLAY3:  load = OVL3,       type = ro,  define = yes, optional = yes;
59     OVERLAY4:  load = OVL4,       type = ro,  define = yes, optional = yes;
60     OVERLAY5:  load = OVL5,       type = ro,  define = yes, optional = yes;
61     OVERLAY6:  load = OVL6,       type = ro,  define = yes, optional = yes;
62     OVERLAY7:  load = OVL7,       type = ro,  define = yes, optional = yes;
63     OVERLAY8:  load = OVL8,       type = ro,  define = yes, optional = yes;
64     OVERLAY9:  load = OVL9,       type = ro,  define = yes, optional = yes;
65 }
66 FEATURES {
67     CONDES: type    = constructor,
68             label   = __CONSTRUCTOR_TABLE__,
69             count   = __CONSTRUCTOR_COUNT__,
70             segment = INIT;
71     CONDES: type    = destructor,
72             label   = __DESTRUCTOR_TABLE__,
73             count   = __DESTRUCTOR_COUNT__,
74             segment = RODATA;
75     CONDES: type    = interruptor,
76             label   = __INTERRUPTOR_TABLE__,
77             count   = __INTERRUPTOR_COUNT__,
78             segment = RODATA,
79             import  = __CALLIRQ__;
80 }