File: mouse_unload.s

package info (click to toggle)
cc65 2.19-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,268 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,009; perl: 607
file content (35 lines) | stat: -rw-r--r-- 929 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;
; Ullrich von Bassewitz, 2004-03-21
;
; unsigned char mouse_unload (void);
; /* Uninstall, then unload the currently loaded driver. */


        .include        "mouse-kernel.inc"
        .include        "modload.inc"

        .import         return0



_mouse_unload:
        lda     _mouse_drv
        pha                             ; Save pointer to driver
        ora     _mouse_drv+1
        beq     no_driver               ; No driver
        lda     _mouse_drv+1
        pha

        jsr     _mouse_uninstall        ; Uninstall the driver

        pla
        tax
        pla                             ; Get pointer to driver
        jsr     _mod_free               ; Free the driver
        jmp     return0                 ; Return MOUSE_ERR_OK

no_driver:
        tax                             ; X = 0
        pla                             ; Remove pushed junk
        lda     #<MOUSE_ERR_NO_DRIVER
        rts