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