Merge pull request #1 from oliverschmidt/patch-1

Adjusted linker configuration.
This commit is contained in:
StewBC 2020-01-07 07:52:41 +01:00 committed by GitHub
commit ce8bba2919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,39 +1,41 @@
SYMBOLS { SYMBOLS {
__LOADADDR__: type = import; __LOADADDR__: type = import;
__EXEHDR__: type = import; __EXEHDR__: type = import;
__STACKSIZE__: type = weak, value = $0800; # 2k stack __STACKSIZE__: type = weak, value = $0800; # 2k stack
__HIMEM__: type = weak, value = $D000;
} }
MEMORY { MEMORY {
ZP: file = "", define = yes, start = $0002, size = $001A; ZP: file = "", define = yes, start = $0002, size = $001A;
LOADADDR: file = %O, start = $07FF, size = $0002; LOADADDR: file = %O, start = $07FF, size = $0002;
HEADER: file = %O, start = $0801, size = $000C; HEADER: file = %O, start = $0801, size = $000C;
RAM1: file = %O, define = yes, start = $080D, size = $7BF3; MAIN: file = %O, define = yes, start = $080D, size = $7BF3;
RAM: file = %O, define = yes, start = $9000, size = $3C00 - __STACKSIZE__; BSS: file = "", start = $9000, size = $3C00 - __STACKSIZE__;
} }
SEGMENTS { SEGMENTS {
ZEROPAGE: load = ZP, type = zp;
LOADADDR: load = LOADADDR, type = ro; LOADADDR: load = LOADADDR, type = ro;
EXEHDR: load = HEADER, type = ro; EXEHDR: load = HEADER, type = ro;
STARTUP: load = RAM1, type = ro; STARTUP: load = MAIN, type = ro;
LOWCODE: load = RAM1, type = ro, optional = yes; LOWCODE: load = MAIN, type = ro, optional = yes;
INIT: load = RAM1, type = ro, define = yes, optional = yes; CODE: load = MAIN, type = ro;
CODE: load = RAM1, type = ro; RODATA: load = MAIN, type = ro;
RODATA: load = RAM1, type = ro; DATA: load = MAIN, type = rw;
DATA: load = RAM1, type = rw; INIT: load = MAIN, type = ro;
ZPSAVE: load = RAM, type = bss, define = yes; ONCE: load = MAIN, type = ro, define = yes;
BSS: load = RAM, type = bss, define = yes; BSS: load = BSS, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
} }
FEATURES { FEATURES {
CONDES: segment = INIT, CONDES: type = constructor,
type = constructor, label = __CONSTRUCTOR_TABLE__,
label = __CONSTRUCTOR_TABLE__, count = __CONSTRUCTOR_COUNT__,
count = __CONSTRUCTOR_COUNT__; segment = ONCE;
CONDES: segment = RODATA, CONDES: type = destructor,
type = destructor, label = __DESTRUCTOR_TABLE__,
label = __DESTRUCTOR_TABLE__, count = __DESTRUCTOR_COUNT__,
count = __DESTRUCTOR_COUNT__; segment = RODATA;
CONDES: segment = RODATA, CONDES: type = interruptor,
type = interruptor, label = __INTERRUPTOR_TABLE__,
label = __INTERRUPTOR_TABLE__, count = __INTERRUPTOR_COUNT__,
count = __INTERRUPTOR_COUNT__; segment = RODATA,
import = __CALLIRQ__;
} }