2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 0.08.1998
|
|
|
|
;
|
|
|
|
; void gotoy (unsigned char y);
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export _gotoy
|
|
|
|
.import plot
|
|
|
|
.importzp CURS_Y
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
_gotoy: sta CURS_Y ; Set the new position
|
|
|
|
jmp plot ; And activate it
|
2000-05-28 13:40:48 +00:00
|
|
|
|