1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00
cc65/libsrc/joystick/joy_unload.s
cuz 3aee15b6ce Make joy_install, joy_uninstall user callable functions
git-svn-id: svn://svn.cc65.org/cc65/trunk@1950 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-02-10 22:11:12 +00:00

33 lines
685 B
ArmAsm

;
; Ullrich von Bassewitz, 2002-11-29
;
; unsigned char __fastcall__ joy_unload (void);
; /* Unload the currently loaded driver. */
.import joy_clear_ptr
.include "joy-kernel.inc"
.include "joy-error.inc"
.include "modload.inc"
_joy_unload:
lda _joy_drv
ora _joy_drv+1
beq no_driver ; No driver
jsr joy_uninstall ; Uninstall the driver
lda _joy_drv
ldx _joy_drv+1
jsr _mod_free ; Free the driver
jmp joy_clear_ptr ; Clear driver pointer, return zero
no_driver:
tax ; X = 0
lda #JOY_ERR_NO_DRIVER
rts