2004-03-16 19:27:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-12-30
|
|
|
|
;
|
2012-03-04 13:08:54 +00:00
|
|
|
; void mouse_show (void);
|
2004-03-16 19:27:48 +00:00
|
|
|
; /* Show the mouse. See mouse_hide for more information. */
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "mouse-kernel.inc"
|
|
|
|
|
|
|
|
.proc _mouse_show
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
lda _mouse_hidden ; Mouse visible?
|
|
|
|
beq @L1 ; Jump if yes
|
|
|
|
dec _mouse_hidden ; Set the flag
|
|
|
|
bne @L1 ; Jump if still invisible
|
2004-03-16 19:27:48 +00:00
|
|
|
jmp mouse_show ; Call the driver
|
2013-05-09 13:56:54 +02:00
|
|
|
@L1: rts
|
2004-03-16 19:27:48 +00:00
|
|
|
|
|
|
|
.endproc
|