]> git.sur5r.net Git - cc65/commitdiff
We now don't define the memory area RAM anymore. So use the segment STARTUP - as...
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 16 Jun 2012 22:58:03 +0000 (22:58 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 16 Jun 2012 22:58:03 +0000 (22:58 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5729 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/apple2/extra/iobuf-0800.s

index c46052ca851df281beb8520a66e54c89d2c09049..69fd6a6573ec38aa021eb0c848b3be7c43f34787 100644 (file)
@@ -7,7 +7,7 @@
 
         .constructor   initiobuf
         .export                iobuf_alloc, iobuf_free
-        .import                __RAM_START__
+        .import                __STARTUP_RUN__
         .import                incsp2, popax
 
         .include       "zeropage.inc"
@@ -18,7 +18,7 @@
 
 initiobuf:
         ; Convert end address highbyte to table index
-        lda     #>__RAM_START__
+        lda     #>__STARTUP_RUN__
         sec
         sbc     #>$0800
         lsr