mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
14 lines
254 B
ArmAsm
14 lines
254 B
ArmAsm
|
;
|
||
|
; Christian Groessler, 13-Mar-2014
|
||
|
;
|
||
|
; void gotoy (unsigned char y);
|
||
|
;
|
||
|
|
||
|
.include "atari5200.inc"
|
||
|
.export _gotoy
|
||
|
.import setcursor
|
||
|
|
||
|
_gotoy:
|
||
|
sta ROWCRS_5200 ; Set Y
|
||
|
jmp setcursor
|