cursor.s



;
; 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



Valid HTML 4.0! cursor.s.html; generated on Sat Oct 13 22:41:32 2001 by ca65html
uz@cc65.org