2000-10-31 18:08:25 +00:00
|
|
|
MEMORY {
|
2005-02-25 07:52:50 +00:00
|
|
|
BASICHDR: start = $0001, size = $0050, type = rw, fill = yes, fillval = 0, file = %O;
|
|
|
|
ZP: start = $0051, size = $00AD, type = rw, define = yes, fill = yes, fillval = 0, file = %O;
|
|
|
|
STARTUP: start = $00FE, size = $0102, fill = yes, fillval = 0, file = %O;
|
|
|
|
PAGE2: start = $0200, size = $0100, fill = yes, fillval = 0, file = %O;
|
|
|
|
PAGE3: start = $0300, size = $0100, fill = yes, fillval = 0, file = %O;
|
|
|
|
RAM: start = $0400, size = $FAAE, file = %O;
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|
|
|
|
SEGMENTS {
|
2003-12-20 23:52:48 +00:00
|
|
|
BASICHDR: load = BASICHDR, type = rw;
|
|
|
|
STARTUP: load = STARTUP, type = rw;
|
|
|
|
PAGE2: load = PAGE2, type = rw;
|
|
|
|
PAGE3: load = PAGE3, type = rw;
|
2005-02-25 07:52:50 +00:00
|
|
|
LOWCODE: load = RAM, type = ro, optional = yes;
|
|
|
|
INIT: load = RAM, type = ro, define = yes, optional = yes;
|
2005-01-08 21:08:04 +00:00
|
|
|
CODE: load = RAM, type = ro;
|
|
|
|
RODATA: load = RAM, type = ro;
|
2003-12-20 23:52:48 +00:00
|
|
|
DATA: load = RAM, type = rw;
|
|
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
2005-02-25 07:52:50 +00:00
|
|
|
EXTZP: load = ZP, type = rw, define = yes;
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|
2000-11-20 23:04:30 +00:00
|
|
|
FEATURES {
|
|
|
|
CONDES: segment = RODATA,
|
|
|
|
type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__;
|
|
|
|
CONDES: segment = RODATA,
|
|
|
|
type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__;
|
2003-12-20 23:52:48 +00:00
|
|
|
# condes functions with type 2 are called in the interrupt
|
|
|
|
CONDES: segment = RODATA,
|
2004-09-20 10:24:59 +00:00
|
|
|
type = interruptor,
|
|
|
|
label = __INTERRUPTOR_TABLE__,
|
|
|
|
count = __INTERRUPTOR_COUNT__;
|
2000-11-20 23:04:30 +00:00
|
|
|
}
|
2001-03-10 14:24:58 +00:00
|
|
|
SYMBOLS {
|
|
|
|
__STACKSIZE__ = $800; # 2K stack
|
|
|
|
}
|