1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Rename 'syschk' symbol in the linker config file, which forces inclusion

of the 'system check' load chunki, to '__SYSTEM_CHECK__'.
This commit is contained in:
Christian Groessler 2013-10-18 01:36:44 +02:00
parent 648e6d79f1
commit bf3a23c34c
6 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ SYMBOLS {
__OVERLAYSIZE__: type = weak, value = $1000; # 4k overlay
__STARTADDRESS__: type = export, value = %S;
__RESERVED_MEMORY__: type = weak, value = $0000;
syschk: type = import; # force inclusion of SYSCHK
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
}
MEMORY {
ZP: file = "", define = yes, start = $0082, size = $007E;

View File

@ -5,7 +5,7 @@ SYMBOLS {
__STACKSIZE__: type = weak, value = $0800; # 2k stack
__STARTADDRESS__: type = export, value = %S;
__RESERVED_MEMORY__: type = weak, value = $0000;
syschk: type = import; # force inclusion of SYSCHK
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
}
MEMORY {
ZP: file = "", define = yes, start = $0082, size = $007E;

View File

@ -10,7 +10,7 @@ FEATURES {
SYMBOLS {
__STACKSIZE__: type = weak, value = $0800; # 2k stack
__STARTADDRESS__: type = export, value = %S;
syschk: type = import; # force inclusion of SYSCHK
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
sramprep: type = import; # force inclusion of SRPREP
}

View File

@ -6,7 +6,7 @@ SYMBOLS {
__STACKSIZE__: type = weak, value = $0800; # 2k stack
__OVERLAYSIZE__: type = weak, value = $1000; # 4k overlay
__STARTADDRESS__: type = export, value = %S;
syschk: type = import; # force inclusion of SYSCHK
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
sramprep: type = import; # force inclusion of SRPREP
}

View File

@ -5,7 +5,7 @@ FEATURES {
SYMBOLS {
__STACKSIZE__: type = weak, value = $0800; # 2k stack
__STARTADDRESS__: type = export, value = %S;
syschk: type = import; # force inclusion of SYSCHK
__SYSTEM_CHECK__: type = import; # force inclusion of "system check" load chunk
sramprep: type = import; # force inclusion of SRPREP
}

View File

@ -16,7 +16,7 @@
;DEBUG = 1
.export syschk
.export __SYSTEM_CHECK__: absolute = 1
.import __SYSCHK_LOAD__
.import __STARTADDRESS__