1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-18 07:29:36 +00:00
cc65/libsrc/tgi/tgi_ioctl.s
Greg King 0390c34e88 Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
2014-06-30 16:51:07 -04:00

27 lines
595 B
ArmAsm

;
; Ullrich von Bassewitz, 2004-10-14
;
; unsigned __fastcall__ tgi_ioctl (unsigned char code, void* data);
; /* Call the driver specific control function. What this function does for
; ** a specific code depends on the driver. The driver will set an error
; ** for unknown codes or values.
; */
;
.include "tgi-kernel.inc"
.import popa
.importzp ptr1
.proc _tgi_ioctl
sta ptr1
stx ptr1+1 ; Save val
jsr popa ; Retrieve code
jmp tgi_control ; Call the driver
.endproc