mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 00:04:46 +00:00
26 lines
1.1 KiB
INI
26 lines
1.1 KiB
INI
|
|
MEMORY {
|
|
ZP: start = $00, size = $08, type = rw, define = yes; #zero size as we hand allocate all ZP locations
|
|
IP65ZP: start = $E0, size = $0, type = rw, define = yes; #zero size as we hand allocate all ZP locations
|
|
HEADER: start = $0000, size = $10, file = %O;
|
|
RAM: start = $803, size = $8000, file = %O, define=yes;
|
|
PAGE3: start = $2C0, size = 272;
|
|
}
|
|
SEGMENTS {
|
|
EXEHDR: load = HEADER, type = ro;
|
|
STARTUP: load = RAM,run=RAM, type = ro, define = yes, optional=yes;
|
|
CODE: load = RAM, run=RAM, type = ro, define = yes;
|
|
RODATA: load = RAM, run=RAM, type = ro , define = yes;
|
|
IP65_DEFAULTS: load = RAM, run=RAM, type = ro , define = yes;
|
|
DATA: load = RAM, run=RAM, type = rw , define = yes;
|
|
PAGE3: load = RAM,run=PAGE3, type = rw, define = yes, optional=yes;
|
|
HTTP_VARS: load = RAM, run=RAM, type = rw, optional=yes;
|
|
TCP_VARS: load = RAM, type = bss, optional=yes;
|
|
APP_SCRATCH: load = RAM, type = bss , optional=yes;
|
|
BSS: load=RAM, type = bss, define = yes;
|
|
ZEROPAGE: load = ZP, type = zp , optional=yes;
|
|
IP65ZP: load = IP65ZP, type = zp,optional=yes;
|
|
}
|
|
|
|
|