1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-09 06:29:38 +00:00

Added the long-missing driver-flags byte to the potentiometer (mouse) drivers.

This commit is contained in:
Greg King 2014-05-05 04:16:04 -04:00
parent 2a3fbc6e36
commit 047d9abc68
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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