]> git.sur5r.net Git - cc65/blob - libsrc/c64/kplot.s
remove TABs
[cc65] / libsrc / c64 / kplot.s
1 ;
2 ; Ullrich von Bassewitz, 2002-12-09, 2009-09-27
3 ;
4 ; PLOT replacement function for the C64. The kernal function in the -02 kernals
5 ; does not set the pointer to the color RAM correctly, so we need to fix that.
6 ;
7
8         .export         PLOT
9
10
11 .proc   PLOT
12
13         bcs     @L1
14         jsr     $FFF0                   ; Set cursor position
15         jmp     $EA24                   ; Set pointer to color RAM
16
17 @L1:    jmp     $FFF0                   ; Get cursor position
18
19 .endproc
20
21