Working...

git-svn-id: svn://svn.cc65.org/cc65/trunk@2899 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-03-05 18:34:44 +00:00
parent 18a2904921
commit 703cde460f

View file

@ -67,6 +67,16 @@
IOCTL .addr
IRQ .addr
.endstruct
XPOS .word ; Mouse X position
YPOS .word ; Mouse Y position
CALLBACKS .struct ; Jump instructions
.byte ; JMP opcode
CHIDE .addr ; Jump address
.byte
CSHOW .addr
.byte
CMOVE .addr
.endstruct
.endstruct
;------------------------------------------------------------------------------
@ -98,6 +108,7 @@ MOUSE_BTN_RIGHT = $01
; Variables
.global _mouse_drv ; Pointer to driver
.global _mouse_hidden ; Counter, 0 = mouse is visible
;------------------------------------------------------------------------------
; C callable functions