Added the new INIT segment to all configs and adjusted formatting.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3402 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-02-25 07:52:50 +00:00
parent 7910ebfacf
commit 34017fb89a
23 changed files with 261 additions and 229 deletions

View File

@@ -1,12 +1,13 @@
# ld65 Linker-configuration for LUnix, Next Generation.
MEMORY {
ZP: start = $80, size = $40; # userzp buffer
RAM: start = %S, size = $7600;
ZP: start = $0080, size = $0040; # userzp buffer
RAM: start = %S, size = $7600;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp, define = yes; # Pseudo-registers
STARTUP: load = RAM, type = ro; # First initiation code
LOWCODE: load = RAM, type = ro, optional = yes; # Legacy from other platforms
INIT: load = RAM, type = ro, define = yes, optional = yes;
CODE: load = RAM, type = ro; # Program
RODATA: load = RAM, type = ro; # Literals, constants
DATA: load = RAM, type = rw; # Initialized variables