1
0
mirror of https://github.com/deater/dos33fsprogs.git synced 2025-03-13 03:38:14 +00:00
Vince Weaver b1238af49d re-arranged the entire directory structure
this will probably upset people
2021-01-05 15:29:31 -05:00

26 lines
405 B
ArmAsm

;====================================
; draw pointer
;====================================
; actual game it sorta pulses colors
draw_pointer:
lda CURSOR_VISIBLE
beq no_draw_pointer
; point sprite to right location (X,Y)
lda CURSOR_X
sta XPOS
lda CURSOR_Y
sta YPOS
lda #<pointer_sprite
sta INL
lda #>pointer_sprite
sta INH
jsr put_sprite_crop
no_draw_pointer:
rts