2014-11-16 19:07:59 +00:00
|
|
|
FEATURES {
|
2014-11-29 19:56:49 +00:00
|
|
|
STARTADDRESS: default = $0200;
|
2014-11-16 19:07:59 +00:00
|
|
|
}
|
2013-07-14 20:50:38 +00:00
|
|
|
SYMBOLS {
|
2015-03-09 10:17:28 +00:00
|
|
|
# If you want ld65 to output a loadable-format file by default, then uncomment
|
|
|
|
# the next line. (Then, "-u __BOOT__" wouldn't be needed on the command line.)
|
2015-03-07 21:37:58 +00:00
|
|
|
# __BOOT__: type = import;
|
2015-01-05 19:37:23 +00:00
|
|
|
__STACKSIZE__: type = weak, value = $0400; # 1 kB stack
|
|
|
|
__HIMEM__: type = weak, value = $8000; # 32 kB RAM
|
2013-07-14 20:50:38 +00:00
|
|
|
}
|
|
|
|
MEMORY {
|
2015-03-07 21:37:58 +00:00
|
|
|
# for size of ZP, see runtime/zeropage.s and c1p/extzp.s
|
2016-03-07 00:28:55 +00:00
|
|
|
ZP: file = "", define = yes, start = $0002, size = $001A + $0020;
|
|
|
|
HEAD: file = %O, start = $0000, size = $00B6;
|
|
|
|
MAIN: file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
|
2013-07-14 20:50:38 +00:00
|
|
|
}
|
|
|
|
SEGMENTS {
|
2016-03-06 20:26:22 +00:00
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
|
|
EXTZP: load = ZP, type = zp, define = yes, optional = yes;
|
2015-03-07 21:37:58 +00:00
|
|
|
BOOT: load = HEAD, type = ro, optional = yes;
|
2016-03-07 00:28:55 +00:00
|
|
|
STARTUP: load = MAIN, type = ro;
|
|
|
|
LOWCODE: load = MAIN, type = ro, optional = yes;
|
2016-03-15 20:25:22 +00:00
|
|
|
ONCE: load = MAIN, type = ro, optional = yes;
|
2016-03-07 00:28:55 +00:00
|
|
|
CODE: load = MAIN, type = rw;
|
|
|
|
RODATA: load = MAIN, type = rw;
|
|
|
|
DATA: load = MAIN, type = rw;
|
|
|
|
BSS: load = MAIN, type = bss, define = yes;
|
2013-07-14 20:50:38 +00:00
|
|
|
}
|
2015-01-02 19:28:36 +00:00
|
|
|
FEATURES {
|
|
|
|
CONDES: type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__,
|
2016-03-06 20:26:22 +00:00
|
|
|
segment = ONCE;
|
2015-01-02 19:28:36 +00:00
|
|
|
CONDES: type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__,
|
|
|
|
segment = RODATA;
|
|
|
|
}
|