ys2-intro/loader/samples/standalone/Linkfile-c64
2025-11-13 19:07:39 +03:00

21 lines
591 B
Plaintext
Executable file

MEMORY
{
LOADERZP: start = $f7, size = $07, type = rw;
LOWMEM: start = $0334, size = $cc, type = rw;
RAM: start = $1c01, size = $83ff, type = rw;
RESIDENT: start = $fa00, size = $05fa, type = rw;
}
SEGMENTS
{
CODE: load = RAM, type = ro;
DISKIO_INSTALL: load = RAM;
ROM_THUNKS: load = RAM, run = LOWMEM, define = yes;
DISKIO_ZP: load = LOADERZP, type = zp;
DISKIO: load = RAM, run = RESIDENT, define = yes;
RESIDENT_CODE: load = RAM, run = RESIDENT, define = yes;
}