mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 02:05:13 +00:00
15 lines
289 B
ArmAsm
15 lines
289 B
ArmAsm
;
|
|
; void __fastcall__ gotoy (unsigned char y);
|
|
;
|
|
|
|
.export _gotoy
|
|
|
|
.import plot
|
|
|
|
.include "pce.inc"
|
|
.include "extzp.inc"
|
|
|
|
_gotoy:
|
|
sta CURS_Y ; Set Y
|
|
jmp plot ; Set the cursor position
|