]> git.sur5r.net Git - cc65/blobdiff - libsrc/pce/gotoxy.s
Added '_' prefix to sin and cos.
[cc65] / libsrc / pce / gotoxy.s
index cfb59efe2f948db94237cd2919c5540682fd74b6..49f0c602ad86e0347639d138e17a9e1ad43f4e9c 100644 (file)
@@ -1,19 +1,19 @@
 ;
-; Ullrich von Bassewitz, 06.08.1998
+; void __fastcall__ gotoxy (unsigned char x, unsigned char y);
 ;
-; void gotoxy (unsigned char x, unsigned char y);
-;
-
-       .export         _gotoxy
-       .import         popa, plot
 
-       .include "pcengine.inc"
+        .export         gotoxy, _gotoxy
 
-_gotoxy:
+        .import         popa, plot
 
-       sta     CURS_Y          ; Set Y
-       jsr popa                ; Get X
-       sta     CURS_X          ; Set X
-       jmp     plot            ; Set the cursor position
+        .include        "pce.inc"
+        .include        "extzp.inc"
 
+gotoxy:
+        jsr     popa            ; Get Y
 
+_gotoxy:
+        sta     CURS_Y          ; Set Y
+        jsr     popa            ; Get X
+        sta     CURS_X          ; Set X
+        jmp     plot            ; Set the cursor position