mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
37c492b544
The benefits are: - Independency of ld65 build from perl - More transparent behaviour
19 lines
569 B
INI
19 lines
569 B
INI
FEATURES {
|
|
STARTADDRESS: default = $0801;
|
|
}
|
|
SYMBOLS {
|
|
__LOADADDR__: type = import;
|
|
}
|
|
MEMORY {
|
|
LOADADDR: file = %O, start = %S - 2, size = $0002;
|
|
RAM: file = %O, start = %S, size = $D000 - %S;
|
|
}
|
|
SEGMENTS {
|
|
LOADADDR: load = LOADADDR, type = ro;
|
|
EXEHDR: load = RAM, type = ro, optional = yes;
|
|
CODE: load = RAM, type = rw, optional = yes;
|
|
RODATA: load = RAM, type = ro, optional = yes;
|
|
DATA: load = RAM, type = rw, optional = yes;
|
|
BSS: load = RAM, type = bss, optional = yes;
|
|
}
|