]> git.sur5r.net Git - cc65/commitdiff
By default, we get the memory reserved for hires mode
authorjede <jede@oric.org>
Wed, 17 Oct 2018 20:36:00 +0000 (22:36 +0200)
committerOliver Schmidt <ol.sc@web.de>
Fri, 19 Oct 2018 21:43:40 +0000 (23:43 +0200)
cfg/telestrat.cfg

index 9aa1821169cb3a29516194f89ccf6156aacfab8f..2a8ebfd701e476e554cc4ad694c04ea280dc95b1 100644 (file)
@@ -1,7 +1,8 @@
 SYMBOLS {
     __ORIXHDR__:   type = import;
     __STACKSIZE__: type = weak, value = $0800; # 2K stack
-    __RAMEND__:    type = weak, value = $9800;
+    __GRAB__:      type = weak, value = 1;     # 0=don't grab graphics RAM, 1=grab graphics RAM        
+    __RAMEND__:    type = weak, value = $9800 + $1C00 * __GRAB__;              
 }
 MEMORY {
     ZP:      file = "", define = yes, start = $00B0,            size = $003A;