2003-04-15 20:47:29 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-04-15
|
|
|
|
;
|
|
|
|
; unsigned char __fastcall__ ser_unload (void);
|
|
|
|
; /* Unload the currently loaded driver. */
|
|
|
|
|
|
|
|
|
|
|
|
.import ser_clear_ptr
|
|
|
|
|
|
|
|
.include "ser-kernel.inc"
|
|
|
|
.include "ser-error.inc"
|
|
|
|
.include "modload.inc"
|
|
|
|
|
2003-04-18 16:29:51 +00:00
|
|
|
|
2003-04-15 20:47:29 +00:00
|
|
|
_ser_unload:
|
|
|
|
lda _ser_drv
|
|
|
|
ora _ser_drv+1
|
|
|
|
beq no_driver ; No driver
|
|
|
|
|
2003-12-14 17:39:22 +00:00
|
|
|
lda _ser_drv
|
|
|
|
pha
|
|
|
|
lda _ser_drv+1
|
|
|
|
pha ; Save pointer to driver
|
|
|
|
|
|
|
|
jsr _ser_uninstall ; Deinstall the driver
|
|
|
|
|
|
|
|
pla
|
|
|
|
tax
|
|
|
|
pla ; Get pointer to driver
|
|
|
|
jmp _mod_free ; Free the driver
|
2003-04-15 20:47:29 +00:00
|
|
|
|
|
|
|
no_driver:
|
2003-12-14 17:39:22 +00:00
|
|
|
tax ; X = 0
|
|
|
|
lda #<SER_ERR_NO_DRIVER
|
2003-04-15 20:47:29 +00:00
|
|
|
rts
|
|
|
|
|