2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Christian Groessler, 19-Feb-2000
|
|
|
|
;
|
|
|
|
; void gotoy (unsigned char y);
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "atari.inc"
|
|
|
|
.export _gotoy
|
2002-11-26 21:32:08 +00:00
|
|
|
.import setcursor
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_gotoy:
|
|
|
|
sta ROWCRS ; Set Y
|
2002-11-26 21:32:08 +00:00
|
|
|
jmp setcursor
|