1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 19:29:53 +00:00
cc65/libsrc/creativision/setcursor.s

37 lines
777 B
ArmAsm
Raw Normal View History

2013-12-05 11:40:44 +00:00
;
; Written by Groepaz/Hitmen <groepaz@gmx.net>
; Cleanup by Ullrich von Bassewitz <uz@cc65.org>
;
; Set the cursor position
.export setcursor
.include "creativision.inc"
;-----------------------------------------------------------------------------
.proc setcursor
tya
clc
adc addrlo,x
sta SCREEN_PTR
lda addrhi,x
adc #0
sta SCREEN_PTR+1
rts
.endproc
;-----------------------------------------------------------------------------
; Tables with screen addresses
addrlo: .repeat SCREEN_ROWS,line
.byte <($1000+(line*SCREEN_COLS))
.endrepeat
addrhi: .repeat SCREEN_ROWS,line
.byte >($1000+(line*SCREEN_COLS))
.endrepeat