2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 07.08.1998
|
|
|
|
;
|
|
|
|
; void gotox (unsigned char x);
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export _gotox
|
|
|
|
.import plot
|
|
|
|
.importzp CURS_X
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
_gotox: sta CURS_X ; Set new position
|
|
|
|
jmp plot ; And activate it
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|