mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
d428d3cec7
git-svn-id: svn://svn.cc65.org/cc65/trunk@2859 b7a2c559-68d2-44c3-8de9-860c34a00d81
29 lines
614 B
ArmAsm
29 lines
614 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2003-12-30
|
|
;
|
|
; void __fastcall__ mouse_move (int x, int y);
|
|
; /* Set the mouse cursor to the given position. If a mouse cursor is defined
|
|
; * and currently visible, the mouse cursor is also moved.
|
|
; * NOTE: This function does not check if the given position is valid and
|
|
; * inside the bounding box.
|
|
; */
|
|
;
|
|
|
|
.import ptr1: zp
|
|
|
|
.include "mouse-kernel.inc"
|
|
|
|
.proc _mouse_move
|
|
|
|
sta ptr1
|
|
stx ptr1+1 ; Store x into ptr1
|
|
jsr popax
|
|
jmp mouse_move ; Call the driver
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|
|
|