]> git.sur5r.net Git - cc65/blob - libsrc/cbm/gotox.s
f122a276c9f93f32172412bad9a34d3a85b9423a
[cc65] / libsrc / cbm / gotox.s
1 ;
2 ; Ullrich von Bassewitz, 07.08.1998
3 ;
4 ; void gotox (unsigned char x);
5 ;
6
7         .export         _gotox
8         .import         plot           
9         .importzp       CURS_X
10
11 _gotox: sta     CURS_X          ; Set new position
12         jmp     plot            ; And activate it
13
14
15