-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlinker.cfg
More file actions
16 lines (15 loc) · 798 Bytes
/
linker.cfg
File metadata and controls
16 lines (15 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
MEMORY {
BOOTSECT: file = "bootsect.128", start = $0B00, size = $0100, fill=yes;
BOOTSECT2: file = "autostart64.128", start = $0C00, size = $0100, fill=yes;
CARTROM: file = "", start = $8000, size = $1000;
TBUFFR: file = "", start = 820, size = 204;
VICSCR: file = "", start = $400, size = 1000;
}
SEGMENTS {
DISKHDR: load = BOOTSECT, type = ro;
BOOT128: load = BOOTSECT, type = ro;
RUN64: load = BOOTSECT, type = ro, define = yes;
VICGO64: load = BOOTSECT2, run = VICSCR, type = ro, define = yes;
CARTHDR: load = BOOTSECT2, run = CARTROM, type = ro, define = yes;
AUTOSTART64: load = BOOTSECT2, run = TBUFFR, type = ro, define = yes;
}