mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 08:05:51 +00:00
ec5e38617a
Includes some other small fixes/cleanups.
13 lines
206 B
ArmAsm
13 lines
206 B
ArmAsm
;
|
|
; Christian Groessler, 13-Mar-2014
|
|
;
|
|
; void gotoy (unsigned char y);
|
|
;
|
|
|
|
.include "atari5200.inc"
|
|
.export _gotoy
|
|
|
|
_gotoy:
|
|
sta ROWCRS_5200 ; Set Y
|
|
rts
|