mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2024-11-19 23:32:51 +00:00
25 lines
1.0 KiB
INI
25 lines
1.0 KiB
INI
# Configuration for assembler programs which don't need a special setup
|
|
|
|
FEATURES {
|
|
STARTADDRESS: default = $0800;
|
|
}
|
|
SYMBOLS {
|
|
__FILETYPE__: type = weak, value = $0006; # ProDOS file type
|
|
}
|
|
MEMORY {
|
|
ZP: file = "", start = $0000, size = $00FF;
|
|
HEADER: file = %O, start = %S - $003A, size = $003A;
|
|
MAIN: file = %O, define = yes, start = %S, size = $C000 - %S;
|
|
BSS: file = "", start = __MAIN_LAST__, size = $C000 - __MAIN_LAST__;
|
|
}
|
|
SEGMENTS {
|
|
ZEROPAGE: load = ZP, type = zp, optional = yes;
|
|
EXEHDR: load = HEADER, type = ro, optional = yes;
|
|
LOWCODE: load = MAIN, type = ro, optional = yes;
|
|
HGR: load = MAIN, type = rw, optional = yes, start = $2000;
|
|
CODE: load = MAIN, type = rw start = $4000;
|
|
RODATA: load = MAIN, type = ro, optional = yes;
|
|
DATA: load = MAIN, type = rw, optional = yes;
|
|
BSS: load = BSS, type = bss, optional = yes, define = yes;
|
|
}
|