mirror of
https://github.com/cc65/cc65.git
synced 2025-01-25 11:30:06 +00:00
5304a8149e
* Removed CIRCLE * Aspect ratio is a new header variable * Removed the reserved bytes - it's easier to bump the API version * Clipping is done completely in the wrapper git-svn-id: svn://svn.cc65.org/cc65/trunk@4396 b7a2c559-68d2-44c3-8de9-860c34a00d81
17 lines
307 B
ArmAsm
17 lines
307 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
;
|
|
; void __fastcall__ tgi_circle (int x, int y, unsigned char radius);
|
|
; /* Draw a circle in the current drawing color */
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
.import incsp4
|
|
|
|
.proc _tgi_circle
|
|
|
|
; For now
|
|
jmp incsp4
|
|
|
|
.endproc
|