1 # Configuration for overlay programs (overlays located below main program)
3 # The overlay files don't include the 4 byte DOS 3.3 header so use AppleCommander like this:
4 # java -jar ac.jar -cc65 mydisk.dsk myprog bin < myprog
5 # java -jar ac.jar -p mydisk.dsk myprog.1 bin < myprog.1
6 # java -jar ac.jar -p mydisk.dsk myprog.2 bin < myprog.2
7 # java -jar ac.jar -p mydisk.dsk myprog.3 bin < myprog.3
11 STARTADDRESS: default = $0803;
14 __EXEHDR__: type = import;
15 __STACKSIZE__: type = weak, value = $0800; # 2k stack
16 __HIMEM__: type = weak, value = $9600; # Presumed RAM end
17 __LCADDR__: type = weak, value = $D400; # Behind quit code
18 __LCSIZE__: type = weak, value = $0C00; # Rest of bank two
19 __OVERLAYSIZE__: type = weak, value = $1000; # 4k overlay
22 ZP: file = "", define = yes, start = $0080, size = $001A;
23 HEADER: file = %O, start = %S - 4, size = $0004;
24 MAIN: file = %O, define = yes, start = %S + __OVERLAYSIZE__, size = __HIMEM__ - __OVERLAYSIZE__ - %S;
25 BSS: file = "", start = __ONCE_RUN__, size = __HIMEM__ - __STACKSIZE__ - __ONCE_RUN__;
26 LC: file = "", define = yes, start = __LCADDR__, size = __LCSIZE__;
27 OVL1: file = "%O.1", start = %S, size = __OVERLAYSIZE__;
28 OVL2: file = "%O.2", start = %S, size = __OVERLAYSIZE__;
29 OVL3: file = "%O.3", start = %S, size = __OVERLAYSIZE__;
30 OVL4: file = "%O.4", start = %S, size = __OVERLAYSIZE__;
31 OVL5: file = "%O.5", start = %S, size = __OVERLAYSIZE__;
32 OVL6: file = "%O.6", start = %S, size = __OVERLAYSIZE__;
33 OVL7: file = "%O.7", start = %S, size = __OVERLAYSIZE__;
34 OVL8: file = "%O.8", start = %S, size = __OVERLAYSIZE__;
35 OVL9: file = "%O.9", start = %S, size = __OVERLAYSIZE__;
38 ZEROPAGE: load = ZP, type = zp;
39 EXEHDR: load = HEADER, type = ro, optional = yes;
40 STARTUP: load = MAIN, type = ro, define = yes;
41 LOWCODE: load = MAIN, type = ro, optional = yes;
42 CODE: load = MAIN, type = ro;
43 RODATA: load = MAIN, type = ro;
44 DATA: load = MAIN, type = rw;
45 INIT: load = MAIN, type = rw;
46 ONCE: load = MAIN, type = ro, define = yes;
47 LC: load = MAIN, run = LC, type = ro, optional = yes;
48 BSS: load = BSS, type = bss, define = yes;
49 OVERLAY1: load = OVL1, type = ro, define = yes, optional = yes;
50 OVERLAY2: load = OVL2, type = ro, define = yes, optional = yes;
51 OVERLAY3: load = OVL3, type = ro, define = yes, optional = yes;
52 OVERLAY4: load = OVL4, type = ro, define = yes, optional = yes;
53 OVERLAY5: load = OVL5, type = ro, define = yes, optional = yes;
54 OVERLAY6: load = OVL6, type = ro, define = yes, optional = yes;
55 OVERLAY7: load = OVL7, type = ro, define = yes, optional = yes;
56 OVERLAY8: load = OVL8, type = ro, define = yes, optional = yes;
57 OVERLAY9: load = OVL9, type = ro, define = yes, optional = yes;
60 CONDES: type = constructor,
61 label = __CONSTRUCTOR_TABLE__,
62 count = __CONSTRUCTOR_COUNT__,
64 CONDES: type = destructor,
65 label = __DESTRUCTOR_TABLE__,
66 count = __DESTRUCTOR_COUNT__,
68 CONDES: type = interruptor,
69 label = __INTERRUPTOR_TABLE__,
70 count = __INTERRUPTOR_COUNT__,