]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_setpixel.s
Don't pass mode argument to open() from _fopen().
[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 .proc   _tgi_setpixel
11
12         jsr     tgi_getset      ; Pop args, check range
13         bcs     @L9
14         jmp     tgi_setpixel    ; Call the driver
15 @L9:    rts
16
17 .endproc
18
19