2015-01-31 21:45:18 +00:00
|
|
|
FEATURES {
|
|
|
|
STARTADDRESS: default = $0200;
|
|
|
|
}
|
|
|
|
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-31 21:45:18 +00:00
|
|
|
__STACKSIZE__: type = weak, value = $0400; # 1 kB stack
|
|
|
|
__HIMEM__: type = weak, value = $8000; # 32 kB RAM
|
|
|
|
}
|
|
|
|
MEMORY {
|
2015-03-07 21:37:58 +00:00
|
|
|
# for size of ZP, see runtime/zeropage.s and c1p/extzp.s
|
2015-01-31 21:45:18 +00:00
|
|
|
ZP: file = "", define = yes, start = $0002, size = $001A + $0006;
|
2015-03-13 23:01:12 +00:00
|
|
|
HEAD: file = %O, start = $0000, size = $00B6;
|
2015-01-31 21:45:18 +00:00
|
|
|
RAM: file = %O, define = yes, start = %S, size = __HIMEM__ - __STACKSIZE__ - %S;
|
|
|
|
}
|
|
|
|
SEGMENTS {
|
2015-03-07 21:37:58 +00:00
|
|
|
BOOT: load = HEAD, type = ro, optional = yes;
|
|
|
|
INIT: load = RAM, type = ro, define = yes, optional = yes;
|
|
|
|
CODE: load = RAM, type = rw;
|
|
|
|
RODATA: load = RAM, type = rw;
|
|
|
|
DATA: load = RAM, type = rw;
|
|
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
|
|
ZEROPAGE: load = ZP, type = zp;
|
2015-02-11 18:18:24 +00:00
|
|
|
}
|