18 lines
541 B
SYSTEMD
18 lines
541 B
SYSTEMD
MEMORY
|
|
{
|
|
ZPRAM: start = $2, size = $fe;
|
|
ZPRAM2: start = $2, size = $fe;
|
|
INSTALLRAM: start = $17fe, size = $e802, file = "../build/install-c64.prg";
|
|
RESIDENTRAM: start = $16fe, size = $e902, file = "../build/loader-c64.prg";
|
|
TRANSIENTRAM: start = $3ffe, size = $c002, file = "../build/transient-c64.prg";
|
|
}
|
|
|
|
SEGMENTS
|
|
{
|
|
DISKIO_ZP: load = ZPRAM, type = zp;
|
|
DISKIO_PLUGIN_ZP: load = ZPRAM2, type = zp, optional = yes;
|
|
DISKIO: load = RESIDENTRAM;
|
|
DISKIO_PLUGIN: load = TRANSIENTRAM, optional = yes;
|
|
DISKIO_INSTALL: load = INSTALLRAM;
|
|
}
|