mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-01-01 06:29:23 +00:00
6b50c4b638
- Added exit_to_basic symbol. - Aligned linker config with C64 linker config. - Made switch to lower charset compatible. Allow all test programs to run with LANceGS card. Aligned C64 input file name.
29 lines
1.2 KiB
INI
29 lines
1.2 KiB
INI
# Memory configuration for the VIC20 with 32K RAM Cartridge
|
|
SYMBOLS {
|
|
__LOADADDR__: type = import;
|
|
__EXEHDR__: type = import;
|
|
}
|
|
MEMORY {
|
|
ZP: start = $02, size = $1A;
|
|
IP65ZP: start = $5F, size = $10;
|
|
LOADADDR: start = $11FF, size = $02, file = %O;
|
|
HEADER: start = $1201, size = $0C, file = %O;
|
|
RAM: start = $120D, size = $6DF3, file = %O;
|
|
}
|
|
SEGMENTS {
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
IP65ZP: load = IP65ZP, type = zp, optional = yes;
|
|
LOADADDR: load = LOADADDR, type = ro;
|
|
EXEHDR: load = HEADER, type = ro;
|
|
STARTUP: load = RAM, type = ro, define = yes;
|
|
CODE: load = RAM, type = ro;
|
|
RODATA: load = RAM, type = ro, optional = yes;
|
|
DATA: load = RAM, type = rw;
|
|
SELF_MODIFIED_CODE: load = RAM, type = rw, optional = yes;
|
|
IP65_DEFAULTS: load = RAM, type = rw, optional = yes;
|
|
BSS: load = RAM, type = bss;
|
|
APP_SCRATCH: load = RAM, type = bss, optional = yes;
|
|
TCP_VARS: load = RAM, type = bss, optional = yes;
|
|
HTTP_VARS: load = RAM, type = bss, optional = yes;
|
|
}
|