mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-01-19 15:30:18 +00:00
b65824fee4
git-svn-id: http://svn.code.sf.net/p/netboot65/code@306 93682198-c243-4bdb-bd91-e943c89aac3b
24 lines
1018 B
INI
24 lines
1018 B
INI
#assumes a fully expanded VIC 20
|
|
MEMORY {
|
|
ZP: start = $02, size = $1A, type = rw ;
|
|
IP65ZP: start = $5f, size = $10, type = rw;
|
|
RAM: start = $11FF, size = $6e00, file = %O;
|
|
}
|
|
SEGMENTS {
|
|
STARTUP: load = RAM, type = ro ,define = yes, optional=yes;
|
|
CODE: load = RAM, type = ro,define = yes;
|
|
DATA: load = RAM, type = rw,define = yes;
|
|
SELF_MODIFIED_CODE: load = RAM, type = rw,define = yes, optional=yes;
|
|
VIC_DATA: load = RAM, type = rw,align = $800, optional=yes;
|
|
RODATA: load = RAM, type = ro,define = yes, optional=yes;
|
|
IP65_DEFAULTS: load = RAM, type = rw,define = yes, optional=yes;
|
|
BSS: load = RAM, type = bss, optional=yes;
|
|
# SAFE_BSS: load = RAM3000, type = bss, optional=yes;
|
|
APP_SCRATCH: load = RAM, type = bss, optional=yes;
|
|
ZEROPAGE: load = ZP, type = zp, optional=yes;
|
|
IP65ZP: load = IP65ZP, type = zp, optional=yes;
|
|
TCP_VARS: load = RAM, type = bss, optional=yes;
|
|
HTTP_VARS: load = RAM, type = bss, optional=yes;
|
|
|
|
}
|