2002-06-22 21:40:24 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 22.06.2002
|
|
|
|
;
|
2012-03-04 13:08:54 +00:00
|
|
|
; unsigned char tgi_getcolor (void);
|
2002-06-22 21:40:24 +00:00
|
|
|
; /* Return the current drawing color */
|
|
|
|
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc _tgi_getcolor
|
|
|
|
|
2002-06-22 21:40:24 +00:00
|
|
|
lda _tgi_color ; Get the current drawing color
|
|
|
|
ldx #0 ; Clear high byte
|
|
|
|
rts
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.endproc
|