]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_circle.s
Replace hard returns with an "else", add an error for non-IDENT tokens, and test...
[cc65] / libsrc / tgi / tgi_circle.s
1 ;
2 ; Ullrich von Bassewitz, 2009-11-05
3 ;
4 ; void __fastcall__ tgi_circle (int x, int y, unsigned char radius);
5 ; /* Draw a circle in the current drawing color */
6
7         .include        "tgi-kernel.inc"
8
9         .import         pusha
10
11
12 ;----------------------------------------------------------------------------
13 ;
14
15 .code
16 .proc   _tgi_circle
17
18         jsr     pusha                   ; Push as rx
19         jmp     _tgi_ellipse            ; Draw an ellipse with rx=ry
20
21 .endproc