]> git.sur5r.net Git - cc65/blob - libsrc/mouse/mouse_move.s
Remove trailings spaces from CBM-related asm files
[cc65] / libsrc / mouse / mouse_move.s
1 ;
2 ; Ullrich von Bassewitz, 2003-12-30
3 ;
4 ; void __fastcall__ mouse_move (int x, int y);
5 ; /* Set the mouse cursor to the given position. If a mouse cursor is defined
6 ; ** and currently visible, the mouse cursor is also moved.
7 ; ** NOTE: This function does not check if the given position is valid and
8 ; ** inside the bounding box.
9 ; */
10 ;
11
12         .import         incsp2
13         .import         ptr1: zp                            
14
15         .include        "mouse-kernel.inc"
16
17 .proc   _mouse_move
18
19         jsr     mouse_move              ; Call the driver
20         jmp     incsp2                  ; Drop the parameter
21
22 .endproc
23
24
25
26
27