2000-10-31 18:08:25 +00:00
|
|
|
MEMORY {
|
|
|
|
ZP: start = $02, size = $1A, type = rw;
|
2001-03-08 14:49:31 +00:00
|
|
|
RAM: start = $7FF, size = $c801, define = yes, file = %O;
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|
|
|
|
SEGMENTS {
|
|
|
|
CODE: load = RAM, type = wprot;
|
|
|
|
RODATA: load = RAM, type = wprot;
|
|
|
|
DATA: load = RAM, type = rw;
|
|
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
|
|
}
|
2000-11-20 22:58:41 +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__;
|
|
|
|
}
|
|
|
|
|
2001-03-08 14:49:31 +00:00
|
|
|
|