mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-01-20 21:29:48 +00:00
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;
|
||
|
|
||
|
}
|