]> git.sur5r.net Git - cc65/blob - libsrc/mouse/mouse_pos.s
Remove trailings spaces from CBM-related asm files
[cc65] / libsrc / mouse / mouse_pos.s
1 ;
2 ; Ullrich von Bassewitz, 2003-12-30
3 ;
4 ; void __fastcall__ mouse_pos (struct mouse_pos* pos);
5 ; /* Return the current mouse position */
6 ;
7
8         .import         ptr1: zp
9
10         .include        "mouse-kernel.inc"
11
12 .proc   _mouse_pos
13
14         sta     ptr1
15         stx     ptr1+1                  ; Store pos into ptr1
16         jmp     mouse_pos               ; Call the driver
17
18 .endproc
19
20
21
22
23