File: mouseref.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 (103 lines) | stat: -rw-r--r-- 2,894 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
;
; Pointer for library references by device drivers.
;
; Helper-routines for the interrupt handler that rejects bogus keypresses
; that are caused by mouse-like devices.
;
; 2013-07-25, Greg King
; 2014-04-26, Christian Groessler
;

        .include        "c128.inc"

        .export         mouse_libref, _pen_adjuster

        .data

mouse_libref:                   ; generic label for mouse-kernel

; A program optionally can set this pointer to a function that gives
; a calibration value to a driver.  If this pointer isn't NULL,
; then a driver that wants a value can call that function.
;
; The function might read a value from a file; or, it might ask the user
; to help calibrate the driver.
;
; void __fastcall__ (*pen_adjuster)(unsigned char *) = NULL;
;
_pen_adjuster:
        .addr   $0000

        .addr   IRQStub2
callback:                       ; callback into mouse driver after ROM IRQ handler has been run
        .addr   $0000           ; (filled in by mouse driver)
jmp_rom_hdlr:                   ; original ROM indirect IRQ handler address
        .addr   $0000           ; (filled in by mouse driver)


.segment        "LOWCODE"

; Called from irq.s when it thinks it chains to the original handler.
; ROM is banked in again. In order to call the callback we have to
; bank it out one more time.

IRQStub2:

; Call ROM handler and prepare stack so that it will return to us.

        ; setup fake IRQ stack frame which will return to "IRQCont"
        lda     #>@IRQCont
        pha
        lda     #<@IRQCont
        pha
        php

        ; mimic the contents saved on the stack by the ROM IRQ entry handler
        pha                     ; A
        pha                     ; X
        pha                     ; Y
        lda     #MMU_CFG_CC65   ; MMU configuration which will be active after the ROM handler returns
        pha

        ; map out ROM
        ldy     MMU_CR
        sta     MMU_CR

        ; push address of ROM handler on stack and jump to it
        lda     jmp_rom_hdlr+1
        pha
        lda     jmp_rom_hdlr
        pha

        sty     MMU_CR          ; map in ROM
        rts                     ; jump to ROM handler

        ; our MMU configuration byte we pushed on the stack before (MMU_CFG_CC65) is now active

@IRQCont:

        ; call mouse driver callback routine
        lda     #>(@IRQCont2-1)
        pha
        lda     #<(@IRQCont2-1)
        pha
        lda     callback+1
        pha
        lda     callback
        pha
        rts                     ; jump to callback routine

@IRQCont2:

        ; return from interrupt
        ; We could just jump to $FF33, but since I don't know whether this address is valid in all
        ; ROM versions, duplicate that code here.

        pla
        sta     MMU_CR          ; MMU configuration register
        pla
        tay
        pla
        tax
        pla
        rti