]> git.sur5r.net Git - cc65/blobdiff - libsrc/tgi/tgi_setpixel.s
remove superfluous ".code" line
[cc65] / libsrc / tgi / tgi_setpixel.s
index cab5618cd141940bc9c42ca88ab6dad658ac89e4..cd2df6891ddcef3f17f05a1950b9e957c5e4e5eb 100644 (file)
@@ -7,16 +7,13 @@
 
         .include        "tgi-kernel.inc"
 
-        .import         popax
-        .importzp       ptr1, ptr2
-        .export         _tgi_setpixel
-
-_tgi_setpixel:
-        sta     ptr2            ; Get the coordinates
-        stx     ptr2+1
-        jsr     popax
-        sta     ptr1
-        stx     ptr1+1
+.proc   _tgi_setpixel
 
+        jsr     tgi_getset      ; Pop args, check range
+        bcs     @L9
         jmp     tgi_setpixel    ; Call the driver
+@L9:    rts
+
+.endproc
+