]> git.sur5r.net Git - cc65/commitdiff
align comment to the same column
authorChristian Groessler <chris@groessler.org>
Sat, 11 Jan 2014 00:05:13 +0000 (01:05 +0100)
committerChristian Groessler <chris@groessler.org>
Mon, 20 Jan 2014 22:04:29 +0000 (23:04 +0100)
libsrc/atari/mcbdefault.s

index e68dba2433d15ca06c450e055fe39eefcae08e99..e1b78f033089a16e4f5228677e17216f09c0e012 100644 (file)
@@ -43,19 +43,19 @@ _mouse_def_callbacks:
 
         .data
 
-cursor = 11             ; '+' screen code'
+cursor = 11                     ; '+' screen code'
 
 ; setcursor
 
 getcursor:
 column: ldy     #$00            ; Patched at runtime
-        lda     (scrptr),y         ; Patched at runtime
+        lda     (scrptr),y      ; Patched at runtime
         cmp     #cursor
         rts
 
 setcursor:
         lda     #cursor
-setscr: sta     (scrptr),y         ; Patched at runtime
+setscr: sta     (scrptr),y      ; Patched at runtime
         rts
 
 ; ------------------------------------------------------------------------