1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/mouse/mouse_ioctl.s
cuz 904780547c More mouse stuff
git-svn-id: svn://svn.cc65.org/cc65/trunk@2856 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-12-30 08:08:07 +00:00

28 lines
560 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-12-30
;
; unsigned char __fastcall__ mouse_ioctl (unsigned char code, void* data);
; /* Call the driver specific ioctl function. NON PORTABLE! Returns an error
; * code.
; */
;
.import popa
.import ptr1: zp
.include "mouse-kernel.inc"
.proc _mouse_ioctl
sta ptr1
stx ptr1+1 ; Store data into ptr1
jsr popa ; Get code from stack
jmp mouse_ioctl ; Call the driver
.endproc