]> git.sur5r.net Git - cc65/blobdiff - libsrc/tgi/tgi_circle.s
Renamed ..._deinstall -> ..._uninstall.
[cc65] / libsrc / tgi / tgi_circle.s
index 4908000c9bb290d7859ab9cefd703239eb13f5c6..ab79a1d2b4b6bea80195d41397994d31bd4e4e5c 100644 (file)
@@ -8,12 +8,12 @@
 
         .import         popax
         .importzp       tmp1
-        .export         _tgi_circle
 
-_tgi_circle:
+.proc   _tgi_circle
+
         sta     tmp1            ; Get the coordinates
         jsr     popax
         jsr     tgi_popxy       ; Pop X/Y into ptr1/ptr2
         jmp     tgi_circle      ; Call the driver
 
-
+.endproc