]> git.sur5r.net Git - cc65/blobdiff - cfg/sim6502.cfg
goto.c warning fix for implicit truncation
[cc65] / cfg / sim6502.cfg
index b50703bab2c5330f10ad8105367cae0bbeaf4d38..530787489f6679580f409a6306e1771f1fb70a3f 100644 (file)
@@ -3,7 +3,7 @@ SYMBOLS {
     __STACKSIZE__: type = weak, value = $0800; # 2k stack
 }
 MEMORY {
-    ZP:     file = "",               start = $0000, size = $001A;
+    ZP:     file = "",               start = $0000, size = $001B;
     HEADER: file = %O,               start = $0000, size = $0001;
     MAIN:   file = %O, define = yes, start = $0200, size = $FDF0 - __STACKSIZE__;
 }
@@ -11,12 +11,12 @@ SEGMENTS {
     ZEROPAGE: load = ZP,     type = zp;
     EXEHDR:   load = HEADER, type = ro;
     STARTUP:  load = MAIN,   type = ro;
-    LOWCODE:  load = MAIN,   type = ro,                optional = yes;
-    ONCE:     load = MAIN,   type = ro,  define = yes, optional = yes;
+    LOWCODE:  load = MAIN,   type = ro,  optional = yes;
+    ONCE:     load = MAIN,   type = ro,  optional = yes;
     CODE:     load = MAIN,   type = ro;
     RODATA:   load = MAIN,   type = ro;
     DATA:     load = MAIN,   type = rw;
-    BSS:      load = MAIN,   type = bss, define = yes;
+    BSS:      load = MAIN,   type = bss, define   = yes;
 }
 FEATURES {
     CONDES: type    = constructor,