2002-12-13 10:47:03 +00:00
|
|
|
# ld65 Linker-configuration for LUnix, Next Generation.
|
2010-03-21 17:10:17 +00:00
|
|
|
|
|
|
|
SYMBOLS {
|
2010-11-12 14:17:35 +00:00
|
|
|
__HEAPSIZE__: type = weak, value = $2000; # 8k heap [temporary, until LUnix malloc() exists]
|
|
|
|
__STACKSIZE__: type = weak, value = $0400; # 1k stack (do typical LUnix apps. need 2k?)
|
2010-03-21 17:10:17 +00:00
|
|
|
}
|
2000-10-31 18:08:25 +00:00
|
|
|
MEMORY {
|
2016-03-07 00:28:55 +00:00
|
|
|
ZP: start = $0080, size = $0040;
|
|
|
|
MAIN: start = %S, size = $7600 - __STACKSIZE__;
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|
|
|
|
SEGMENTS {
|
2016-03-17 20:31:43 +00:00
|
|
|
ZEROPAGE: load = ZP, type = zp, define = yes; # Pseudo-registers
|
|
|
|
STARTUP: load = MAIN, type = ro; # First initialization code
|
|
|
|
LOWCODE: load = MAIN, type = ro, optional = yes; # Legacy from other platforms
|
|
|
|
ONCE: load = MAIN, type = ro, optional = yes; # Library initialization code
|
|
|
|
CODE: load = MAIN, type = ro; # Program
|
|
|
|
RODATA: load = MAIN, type = ro; # Literals, constants
|
|
|
|
DATA: load = MAIN, type = rw; # Initialized variables
|
|
|
|
BSS: load = MAIN, type = bss, define = yes; # Uninitialized variables
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|
2000-11-20 23:04:30 +00:00
|
|
|
FEATURES {
|
2013-02-12 20:55:19 +00:00
|
|
|
CONDES: type = constructor,
|
|
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
|
|
count = __CONSTRUCTOR_COUNT__,
|
2016-03-06 20:26:22 +00:00
|
|
|
segment = ONCE;
|
2013-02-12 20:55:19 +00:00
|
|
|
CONDES: type = destructor,
|
|
|
|
label = __DESTRUCTOR_TABLE__,
|
|
|
|
count = __DESTRUCTOR_COUNT__,
|
|
|
|
segment = RODATA;
|
|
|
|
CONDES: type = interruptor,
|
|
|
|
label = __INTERRUPTOR_TABLE__,
|
|
|
|
count = __INTERRUPTOR_COUNT__,
|
|
|
|
segment = RODATA,
|
2012-11-03 21:59:15 +00:00
|
|
|
import = __CALLIRQ__;
|
2000-11-20 23:04:30 +00:00
|
|
|
}
|
2000-10-31 18:08:25 +00:00
|
|
|
FILES {
|
|
|
|
%O: format = o65;
|
|
|
|
}
|
|
|
|
FORMATS {
|
2010-03-21 17:10:17 +00:00
|
|
|
o65: os = lunix,
|
|
|
|
type = small,
|
2013-02-12 20:55:19 +00:00
|
|
|
export = main, # Program entry-point
|
|
|
|
import = LUNIXKERNEL; # Kernel entry-points
|
2000-10-31 18:08:25 +00:00
|
|
|
}
|