]> git.sur5r.net Git - cc65/blobdiff - libsrc/tgi/tgi_gotoxy.s
remove superfluous ".code" line
[cc65] / libsrc / tgi / tgi_gotoxy.s
index c363242854bb8d1f6989af89dc2a4af95880f7b1..d02f0ab3d693582bf98e0898b0e20c1e0343b54a 100644 (file)
@@ -8,9 +8,9 @@
         .include        "tgi-kernel.inc"
 
         .import         popax
-        .export         _tgi_gotoxy
 
-_tgi_gotoxy:
+.proc   _tgi_gotoxy
+
         sta     _tgi_cury               ; Y
         stx     _tgi_cury+1
         jsr     popax
@@ -18,5 +18,5 @@ _tgi_gotoxy:
         stx     _tgi_curx+1
         rts
 
+.endproc