-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatari-xex.cfg
More file actions
84 lines (76 loc) · 4.27 KB
/
Copy pathatari-xex.cfg
File metadata and controls
84 lines (76 loc) · 4.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# ----------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------
FEATURES {
STARTADDRESS: default = $1C00;
}
# ----------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------
SYMBOLS {
__EXEHDR__: type = import;
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
__AUTOSTART__: type = import; # force inclusion of autostart "trailer"
__STACKSIZE__: type = weak, value = $0100; # 32 bytes
__STARTADDRESS__: type = export, value = %S;
__RESERVED_MEMORY__: type = weak, value = $0000;
}
# ----------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------
MEMORY {
ZP: start = $0096, size = $0042, type = rw, define = yes;
# file header, just $FFFF
HEADER: file = %O, start = $0000, size = $0002;
# "system check" load chunk
SYSCHKHDR: file = %O, start = $0000, size = $0004;
SYSCHKCHNK: file = %O, start = $2E00, size = $00f6;
SYSCHKTRL: file = %O, start = $0000, size = $0006;
RMTSONGBUFRUN: start = $9d00, size = $0100, file = %O;
RMTSONGBUFIDLE: start = $9E00, size = $0200, file = %O;
RMTSONGBUFEMP: start = $A000, size = $0100, file = %O;
RMTPLAYERBUF: start = $a282, size = $0800, file = %O;
# "main program" load chunk
MAINHDR: file = %O, start = $0000, size = $0004;
MAIN: file = %O, define = yes, start = %S, size = $9D00 - __STACKSIZE__ - %S;
TRAILER: file = %O, start = $0000, size = $0006;
}
# ----------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------
SEGMENTS {
ZEROPAGE: load = ZP, type = zp, define = yes;
EXEHDR: load = HEADER, type = ro;
SYSCHKHDR: load = SYSCHKHDR, type = ro, optional = yes;
SYSCHK: load = SYSCHKCHNK, type = rw, define = yes, optional = yes;
SYSCHKTRL: load = SYSCHKTRL, type = ro, optional = yes;
MAINHDR: load = MAINHDR, type = ro;
STARTUP: load = MAIN, type = ro, define = yes;
LOWCODE: load = MAIN, type = ro, define = yes, optional = yes;
ONCE: load = MAIN, type = ro, optional = yes;
CODE: load = MAIN, type = ro, define = yes;
RODATA: load = MAIN, type = ro;
DATA: load = MAIN, type = rw;
INIT: load = MAIN, type = rw, optional = yes;
CHARDATA: load = MAIN type = ro, define = yes, start = $8000;
BSS: load = MAIN, type = bss, define = yes;
RMTSONGRUN: load = RMTSONGBUFRUN, type = rw, define = yes;
RMTSONGIDLE: load = RMTSONGBUFIDLE, type = rw, define = yes;
RMTSONGEMP: load = RMTSONGBUFEMP, type = rw, define = yes;
RMTPLAYER: load = RMTPLAYERBUF, type = rw, define = yes;
ROWBSS: load = MAIN type = bss, define = yes, align=$100;
AUTOSTRT: load = TRAILER, type = ro;
}
# ----------------------------------------------------------------------------------------------------
# ----------------------------------------------------------------------------------------------------
FEATURES {
CONDES: type = constructor,
label = __CONSTRUCTOR_TABLE__,
count = __CONSTRUCTOR_COUNT__,
segment = ONCE;
CONDES: type = destructor,
label = __DESTRUCTOR_TABLE__,
count = __DESTRUCTOR_COUNT__,
segment = RODATA;
CONDES: type = interruptor,
label = __INTERRUPTOR_TABLE__,
count = __INTERRUPTOR_COUNT__,
segment = RODATA,
import = __CALLIRQ__;
}