]> git.sur5r.net Git - cc65/commitdiff
Type of LOWCODE was wrong. Cleanup.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 5 Jan 2003 21:08:58 +0000 (21:08 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 5 Jan 2003 21:08:58 +0000 (21:08 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1889 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/cfg/lunix.cfg

index 450b7531e448ba752946e723b24cdea4fa9ffdd4..c98772ec0b9a486ead8d546323d1a9a0cb0dca6f 100644 (file)
@@ -5,12 +5,12 @@ MEMORY {
 }
 SEGMENTS {
     ZEROPAGE: load = ZP,  type = zp,  define = yes; # Pseudo-registers
-    STARTUP:  load = RAM, type = wp;   # First initiation code
-    LOWCODE:  load = RAM, type = rw;   # Legacy from other platforms
-    CODE:     load = RAM, type = ro;   # Program
-    RODATA:   load = RAM, type = ro;   # Literals, constants
-    DATA:     load = RAM, type = rw;   # Initiated variables
-    BSS:      load = RAM, type = bss, define = yes; # Un-initiated variables
+    STARTUP:  load = RAM, type = ro;   # First initiation code
+    LOWCODE:  load = RAM, type = ro;           # Legacy from other platforms
+    CODE:     load = RAM, type = ro;   # Program
+    RODATA:   load = RAM, type = ro;   # Literals, constants
+    DATA:     load = RAM, type = rw;   # Initialized variables       
+    BSS:      load = RAM, type = bss, define = yes; # Uninitialized variables
 }
 FEATURES {
     CONDES: segment = RODATA,
@@ -28,7 +28,6 @@ FILES {
 FORMATS {
     o65: os = lunix, type = small,
          export = main,                # Program entry-point
-#        import = LIB6502,     # Shared-library entry-points
          import = LUNIXKERNEL; # Kernel entry-points
 }
 SYMBOLS {