-
Notifications
You must be signed in to change notification settings - Fork 0
/
loadersymbols-c64.inc
46 lines (41 loc) · 1.71 KB
/
loadersymbols-c64.inc
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
#importonce
// repository version 194, built on Mon, 28 Oct 2024 21:01:19 +0100 for project "loader" using
// make PLATFORM=c64 prg INSTALL=0e00 RESIDENT=9000 ZP=90 PROJECT=
// configuration
.const config_ALLOW_2_MHZ_ON_C128 = 0
.const config_DECOMPRESSOR = 11// TSCRUNCH
.const config_DIRTRACK = 18
.const config_DIRTRACK81 = 40
.const config_END_ADDRESS_API = 0
.const config_FILENAME_MAXLENGTH = 2
.const config_FILE_EXISTS_API = 1
.const config_INTERNAL = 0
.const config_LOAD_COMPD_API = 1
.const config_LOAD_RAW_API = 1
.const config_LOAD_TO_API = 0
.const config_LOAD_UNDER_D000_DFFF = 0
.const config_LOAD_VIA_KERNAL_FALLBACK = 0
.const config_MEM_DECOMP_API = 0
.const config_MEM_DECOMP_TO_API = 0
.const config_NTSC_COMPATIBILITY = 0
.const config_ONLY_1541_AND_COMPATIBLE = 0
.const config_PREFER_SPEED_OVER_SIZE = 1
.const config_UNINSTALL_API = 0
// status codes
.const status_OK = $00
.const status_DEVICE_INCOMPATIBLE = $fb
.const status_TOO_MANY_DEVICES = $fc
.const status_GENERIC_KERNAL_ERROR = $fd
.const status_DEVICE_NOT_PRESENT = $fe
.const status_FILE_NOT_FOUND = $ff
// zeropage $e8-$f9
.const loader_zp_first = $57
.const loadaddrlo = $57
.const loadaddrhi = $58
.const loader_zp_last = $67
// install $0e00-$2953
.const install = $0e00
// resident $9000-$9265
.const loadraw = $9000
.const loadcompd = $900e
.const fileexists = $90fe