]> git.sur5r.net Git - cc65/blobdiff - libsrc/c64/emd/c64-ram.s
Remove trailings spaces from CBM-related asm files
[cc65] / libsrc / c64 / emd / c64-ram.s
index f8a4a1819b284c07ac8ef4ee533657322121233c..5355b552da0bb34a4f080b0df8766e7d101dfce6 100644 (file)
@@ -44,7 +44,7 @@
 ; Constants
 
 BASE    = $D000
-PAGES   = ($10000 - BASE) / 256
+PAGES   = ($FF00 - BASE) / 256
 
 ; ------------------------------------------------------------------------
 ; Data.
@@ -167,7 +167,7 @@ loop:   .repeat 8
 
 ; Done
 
-done:   rts               
+done:   rts
 
 ; ------------------------------------------------------------------------
 ; COPYFROM: Copy from extended into linear memory. A pointer to a structure
@@ -178,7 +178,7 @@ done:   rts
 COPYFROM:
         sta     ptr3
         stx     ptr3+1                  ; Save the passed em_copy pointer
-                       
+
         ldy     #EM_COPY::OFFS
         lda     (ptr3),y
         sta     ptr1
@@ -267,5 +267,3 @@ COPYTO: sta     ptr3
         sta     ptr1+1                  ; From
 
         jmp     common
-
-