mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +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:
parent
648e6d79f1
commit
bf3a23c34c
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
;DEBUG = 1
|
||||
|
||||
.export syschk
|
||||
.export __SYSTEM_CHECK__: absolute = 1
|
||||
.import __SYSCHK_LOAD__
|
||||
.import __STARTADDRESS__
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user