mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
826a9545e4
git-svn-id: svn://svn.cc65.org/cc65/trunk@396 b7a2c559-68d2-44c3-8de9-860c34a00d81
21 lines
268 B
ArmAsm
21 lines
268 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 17.06.1998
|
|
;
|
|
; unsigned char cursor (unsigned char onoff);
|
|
;
|
|
|
|
.export _cursor
|
|
.import cursor
|
|
|
|
|
|
.proc _cursor
|
|
|
|
tay ; onoff into Y
|
|
ldx #0 ; High byte of result
|
|
lda cursor ; Get old value
|
|
sty cursor ; Set new value
|
|
rts
|
|
|
|
.endproc
|
|
|