mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 06:25:17 +00:00
ser_unload didn't return a valid error code.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3754 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -5,32 +5,34 @@
|
|||||||
; /* Unload the currently loaded driver. */
|
; /* Unload the currently loaded driver. */
|
||||||
|
|
||||||
|
|
||||||
.import ser_clear_ptr
|
|
||||||
|
|
||||||
.include "ser-kernel.inc"
|
.include "ser-kernel.inc"
|
||||||
.include "ser-error.inc"
|
.include "ser-error.inc"
|
||||||
.include "modload.inc"
|
.include "modload.inc"
|
||||||
|
|
||||||
|
.import ser_clear_ptr
|
||||||
|
.import return0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_ser_unload:
|
_ser_unload:
|
||||||
lda _ser_drv
|
lda _ser_drv
|
||||||
|
pha ; Save pointer to driver
|
||||||
ora _ser_drv+1
|
ora _ser_drv+1
|
||||||
beq no_driver ; No driver
|
beq no_driver ; No driver
|
||||||
|
|
||||||
lda _ser_drv
|
|
||||||
pha
|
|
||||||
lda _ser_drv+1
|
lda _ser_drv+1
|
||||||
pha ; Save pointer to driver
|
pha
|
||||||
|
|
||||||
|
jsr _ser_uninstall ; Uninstall the driver
|
||||||
|
|
||||||
jsr _ser_uninstall ; Deinstall the driver
|
|
||||||
|
|
||||||
pla
|
pla
|
||||||
tax
|
tax
|
||||||
pla ; Get pointer to driver
|
pla ; Get pointer to driver
|
||||||
jmp _mod_free ; Free the driver
|
jsr _mod_free ; Free the driver
|
||||||
|
jmp return0 ; Return SER_ERR_OK
|
||||||
|
|
||||||
no_driver:
|
no_driver:
|
||||||
tax ; X = 0
|
tax ; X = 0
|
||||||
|
pla ; Remove pushed junk
|
||||||
lda #<SER_ERR_NO_DRIVER
|
lda #<SER_ERR_NO_DRIVER
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user