atari-asm.cfg linker config file

This commit is contained in:
Christian Groessler
2013-10-18 03:07:01 +02:00
parent bf3a23c34c
commit b153ec8896
10 changed files with 80 additions and 26 deletions

View File

@@ -2,11 +2,14 @@ FEATURES {
STARTADDRESS: default = $2000;
}
SYMBOLS {
__EXEHDR__: type = import;
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
__MAINCHNKHDR__: type = import;
__AUTOSTART__: type = import; # force inclusion of autostart "trailer"
__STACKSIZE__: type = weak, value = $0800; # 2k stack
__OVERLAYSIZE__: type = weak, value = $1000; # 4k overlay
__STARTADDRESS__: type = export, value = %S;
__RESERVED_MEMORY__: type = weak, value = $0000;
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
}
MEMORY {
ZP: file = "", define = yes, start = $0082, size = $007E;