]> git.sur5r.net Git - cc65/blobdiff - libsrc/cbm/gotoxy.s
Merge remote-tracking branch 'upstream/master'
[cc65] / libsrc / cbm / gotoxy.s
index cce95aee57e39af0ca46d0909d23dcbcc01d6c61..64c6bd21d1639d9f26e07d940273ab77fce1180a 100644 (file)
@@ -4,14 +4,14 @@
 ; void gotoxy (unsigned char x, unsigned char y);
 ;
 
-       .export         _gotoxy
-       .import         popa, plot
-       .importzp       CURS_X, CURS_Y
+        .export         _gotoxy
+        .import         popa, plot
+        .importzp       CURS_X, CURS_Y
 
 _gotoxy:
-       sta     CURS_Y          ; Set Y
-       jsr     popa            ; Get X
-       sta     CURS_X          ; Set X
-       jmp     plot            ; Set the cursor position
+        sta     CURS_Y          ; Set Y
+        jsr     popa            ; Get X
+        sta     CURS_X          ; Set X
+        jmp     plot            ; Set the cursor position