1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/libsrc/atmos/gotoy.s
cuz 9f547a5a4d Add basic support for ORIC Atmos
git-svn-id: svn://svn.cc65.org/cc65/trunk@2046 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-04-13 22:12:09 +00:00

19 lines
195 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-04-13
;
; void gotoy (unsigned char y);
;
.export _gotoy
.include "atmos.inc"
.proc _gotoy
sta CURS_Y ; Set Y
rts
.endproc