mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 18:08:04 +00:00
15 lines
289 B
ArmAsm
15 lines
289 B
ArmAsm
;
|
|
; void __fastcall__ gotox (unsigned char x);
|
|
;
|
|
|
|
.export _gotox
|
|
|
|
.import plot
|
|
|
|
.include "pce.inc"
|
|
.include "extzp.inc"
|
|
|
|
_gotox:
|
|
sta CURS_X ; Set X
|
|
jmp plot ; Set the cursor position
|