]> git.sur5r.net Git - cc65/blobdiff - libsrc/pce/gotoxy.s
Fixed bugs; and, improved the efficiency of some pce library functions.
[cc65] / libsrc / pce / gotoxy.s
index dae9e6e438958f3908feffe1f9b23f3f9cfd2162..49f0c602ad86e0347639d138e17a9e1ad43f4e9c 100644 (file)
@@ -1,8 +1,9 @@
 ;
-; void gotoxy (unsigned char x, unsigned char y);
+; void __fastcall__ gotoxy (unsigned char x, unsigned char y);
 ;
 
         .export         gotoxy, _gotoxy
+
         .import         popa, plot
 
         .include        "pce.inc"
@@ -16,10 +17,3 @@ _gotoxy:
         jsr     popa            ; Get X
         sta     CURS_X          ; Set X
         jmp     plot            ; Set the cursor position
-
-;-------------------------------------------------------------------------------
-; force the init constructor to be imported
-
-        .import initconio
-conio_init      = initconio
-