]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_setpixel.s
New module fileio-test.c
[cc65] / libsrc / tgi / tgi_setpixel.s
1 ;
2 ; Ullrich von Bassewitz, 21.06.2002
3 ;
4 ; void __fastcall__ tgi_setpixel (int x, int y);
5 ; /* Plot a point in the current drawing color */
6
7
8         .include        "tgi-kernel.inc"
9
10         .export         _tgi_setpixel
11
12 _tgi_setpixel:
13         jsr     tgi_getset      ; Pop args, check range
14         bcs     @L9
15         jmp     tgi_setpixel    ; Call the driver
16 @L9:    rts
17
18
19