mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 00:04:46 +00:00
09c718b74f
It's the very purpose of the DATA segment to consolidate all items that potentially need to be copied from ROM to RAM. So there's no need to / point in doing that on a per-item-base.
23 lines
868 B
INI
23 lines
868 B
INI
SYMBOLS {
|
|
__LOADADDR__: type = import;
|
|
__EXEHDR__: type = import;
|
|
}
|
|
MEMORY {
|
|
ZP: start = $02, size = $1A;
|
|
IP65ZP: start = $5F, size = $10;
|
|
LOADADDR: start = $07FF, size = $02, file = %O;
|
|
HEADER: start = $0801, size = $0C, file = %O;
|
|
RAM: start = $080D, size = $77F3, file = %O;
|
|
}
|
|
SEGMENTS {
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
IP65ZP: load = IP65ZP, type = zp, optional = yes;
|
|
LOADADDR: load = LOADADDR, type = ro;
|
|
EXEHDR: load = HEADER, type = ro;
|
|
STARTUP: load = RAM, type = ro, define = yes;
|
|
CODE: load = RAM, type = ro;
|
|
RODATA: load = RAM, type = ro, optional = yes;
|
|
DATA: load = RAM, type = rw;
|
|
BSS: load = RAM, type = bss;
|
|
}
|