mirror of
https://github.com/cc65/cc65.git
synced 2024-12-30 20:29:25 +00:00
Added the long-missing driver-flags byte to the potentiometer (mouse) drivers.
This commit is contained in:
parent
2a3fbc6e36
commit
047d9abc68
@ -3,7 +3,7 @@
|
||||
;
|
||||
; 2006-08-20, Stefan Haubenthal
|
||||
; 2009-09-26, Ullrich von Bassewitz
|
||||
; 2014-03-17, Greg King
|
||||
; 2014-05-05, Greg King
|
||||
;
|
||||
|
||||
.include "zeropage.inc"
|
||||
@ -43,6 +43,10 @@ HEADER:
|
||||
.addr IOCTL
|
||||
.addr IRQ
|
||||
|
||||
; Mouse driver flags
|
||||
|
||||
.byte MOUSE_FLAG_LATE_IRQ
|
||||
|
||||
; Callback table, set by the kernel before INSTALL is called
|
||||
|
||||
CHIDE: jmp $0000 ; Hide the cursor
|
||||
|
@ -3,7 +3,7 @@
|
||||
;
|
||||
; 2006-08-20, Stefan Haubenthal
|
||||
; 2009-09-26, Ullrich von Bassewitz
|
||||
; 2014-03-17, Greg King
|
||||
; 2014-05-05, Greg King
|
||||
;
|
||||
|
||||
.include "zeropage.inc"
|
||||
@ -43,6 +43,10 @@ HEADER:
|
||||
.addr IOCTL
|
||||
.addr IRQ
|
||||
|
||||
; Mouse driver flags
|
||||
|
||||
.byte MOUSE_FLAG_LATE_IRQ
|
||||
|
||||
; Callback table, set by the kernel before INSTALL is called
|
||||
|
||||
CHIDE: jmp $0000 ; Hide the cursor
|
||||
|
Loading…
Reference in New Issue
Block a user