2009-01-22 01:27:03 +00:00
|
|
|
|
|
|
|
MEMORY {
|
|
|
|
ZP: start = $00, size = $08, type = rw, define = yes;
|
|
|
|
IP65ZP: start = $0f, size = $10, type = rw, define = yes;
|
|
|
|
HEADER: start = $0000, size = $10, file = %O;
|
|
|
|
RAM: start = $800, size = $8000, file = %O;
|
|
|
|
}
|
|
|
|
SEGMENTS {
|
|
|
|
EXEHDR: load = HEADER, type = ro;
|
|
|
|
STARTUP: load = RAM,run=RAM, type = ro, define = yes;
|
|
|
|
CODE: load = RAM, run=RAM, type = ro, define = yes;
|
|
|
|
RODATA: load = RAM, run=RAM, type = ro , define = yes;
|
2009-04-17 10:59:03 +00:00
|
|
|
IP65_DEFAULTS: load = RAM, run=RAM, type = ro , define = yes;
|
2009-01-22 01:27:03 +00:00
|
|
|
DATA: load = RAM, run=RAM, type = rw , define = yes;
|
|
|
|
BSS: load=RAM, type = bss, define = yes;
|
2009-07-30 10:43:37 +00:00
|
|
|
TCP_VARS: load = RAM, type = bss;
|
|
|
|
APP_SCRATCH: load = RAM, type = bss;
|
2009-01-22 01:27:03 +00:00
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
|
|
IP65ZP: load = IP65ZP, type = zp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|