2002-06-21 14:16:32 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
|
|
;
|
|
|
|
; unsigned char __fastcall__ tgi_getpixel (int x, int y);
|
|
|
|
; /* Get the color value of a pixel */
|
|
|
|
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
2003-02-11 12:37:46 +00:00
|
|
|
|
2002-06-22 22:01:14 +00:00
|
|
|
.import return0
|
2002-06-21 14:16:32 +00:00
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc _tgi_getpixel
|
|
|
|
|
2002-06-22 21:40:24 +00:00
|
|
|
jsr tgi_getset ; Pop args, check range
|
|
|
|
bcs @L9
|
2002-06-21 14:16:32 +00:00
|
|
|
jmp tgi_getpixel ; Call the driver
|
2002-06-22 22:01:14 +00:00
|
|
|
@L9: jmp return0 ; Assume bg color
|
2002-06-21 14:16:32 +00:00
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.endproc
|
|
|
|
|