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