mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-01-04 10:29:24 +00:00
b65824fee4
git-svn-id: http://svn.code.sf.net/p/netboot65/code@306 93682198-c243-4bdb-bd91-e943c89aac3b
27 lines
809 B
INI
27 lines
809 B
INI
|
|
MEMORY {
|
|
IP65ZP: start = $A3, size = $12, type = rw;
|
|
STARTRAM: start = $11FF, size = $1000, file = %O;
|
|
MAINRAM: start = $4000, size = $3FC9, define = yes, file = %O;
|
|
HIRAM: start = $A000, size = $1fE0;
|
|
}
|
|
SEGMENTS {
|
|
STARTUP: load = STARTRAM, type = rw;
|
|
MAINSTART: load = MAINRAM, type = rw;
|
|
|
|
IP65_DEFAULTS: load = MAINRAM, type = ro;
|
|
CODE: load = MAINRAM, type = ro;
|
|
SELF_MODIFIED_CODE: load = MAINRAM, type = rw;
|
|
RODATA: load = MAINRAM, type = ro;
|
|
DATA: load = MAINRAM, type = rw, define = yes;
|
|
HTTP_VARS: load = MAINRAM, type = rw, define = yes;
|
|
BSS: load = MAINRAM, type = bss;
|
|
|
|
IP65ZP: load = IP65ZP, type = zp;
|
|
|
|
ZEROPAGE: load = IP65ZP, type = zp;
|
|
|
|
TCP_VARS: load = HIRAM, type = bss;
|
|
|
|
}
|