2014-11-29 15:52:42 +01:00
|
|
|
;
|
|
|
|
; copied from CBM implementation
|
|
|
|
; originally by:
|
|
|
|
; Ullrich von Bassewitz, 07.08.1998
|
|
|
|
;
|
|
|
|
; void gotox (unsigned char x);
|
|
|
|
;
|
|
|
|
.export _gotox
|
2015-02-12 22:12:51 +01:00
|
|
|
.import plot
|
|
|
|
.include "extzp.inc"
|
2014-11-29 15:52:42 +01:00
|
|
|
|
|
|
|
_gotox: sta CURS_X ; Set new position
|
|
|
|
jmp plot ; And activate it
|