]> git.sur5r.net Git - cc65/blobdiff - libsrc/tgi/tgi_circle.s
New module fileio-test.c
[cc65] / libsrc / tgi / tgi_circle.s
index 12bc41740bcef53d4d9ae6208d6dd99d7a0c08fd..4908000c9bb290d7859ab9cefd703239eb13f5c6 100644 (file)
@@ -7,18 +7,13 @@
         .include        "tgi-kernel.inc"
 
         .import         popax
-        .importzp       ptr1, ptr2, tmp1
+        .importzp       tmp1
         .export         _tgi_circle
 
 _tgi_circle:
         sta     tmp1            ; Get the coordinates
         jsr     popax
-        sta     ptr2
-        stx     ptr2+1
-        jsr     popax
-        sta     ptr1
-        stx     ptr1+1
-
+        jsr     tgi_popxy       ; Pop X/Y into ptr1/ptr2
         jmp     tgi_circle      ; Call the driver