mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
78070d8bfb
optimized. git-svn-id: svn://svn.cc65.org/cc65/trunk@4445 b7a2c559-68d2-44c3-8de9-860c34a00d81
22 lines
475 B
ArmAsm
22 lines
475 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2009-11-05
|
|
;
|
|
; void __fastcall__ tgi_circle (int x, int y, unsigned char radius);
|
|
; /* Draw a circle in the current drawing color */
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
.import pusha
|
|
|
|
|
|
;----------------------------------------------------------------------------
|
|
;
|
|
|
|
.code
|
|
.proc _tgi_circle
|
|
|
|
jsr pusha ; Push as rx
|
|
jmp _tgi_ellipse ; Draw an ellipse with rx=ry
|
|
|
|
.endproc
|