]> git.sur5r.net Git - cc65/blob - libsrc/vic20/kplot.s
Separate header and trailers of Atari system_check chunk.
[cc65] / libsrc / vic20 / kplot.s
1 ;
2 ; Ullrich von Bassewitz, 2002-12-09
3 ;
4 ; PLOT replacement function for the VIC20. The kernal function does not set
5 ; the pointer to the color RAM correctly.
6 ;
7
8         .export         PLOT
9
10
11 .proc   PLOT
12
13         bcs     @L1                     
14         jsr     $FFF0                   ; Set cursor position
15         jmp     $EAB2                   ; Set pointer to color RAM
16
17 @L1:    jmp     $FFF0                   ; Get cursor position
18
19 .endproc
20
21