From 047d9abc6886dfb14f9d6d9bdbd4ff003bbcae80 Mon Sep 17 00:00:00 2001 From: Greg King Date: Mon, 5 May 2014 04:16:04 -0400 Subject: [PATCH] Added the long-missing driver-flags byte to the potentiometer (mouse) drivers. --- libsrc/c128/mou/c128-pot.s | 6 +++++- libsrc/c64/mou/c64-pot.s | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/libsrc/c128/mou/c128-pot.s b/libsrc/c128/mou/c128-pot.s index 4e549cc6d..f760d6b62 100644 --- a/libsrc/c128/mou/c128-pot.s +++ b/libsrc/c128/mou/c128-pot.s @@ -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 diff --git a/libsrc/c64/mou/c64-pot.s b/libsrc/c64/mou/c64-pot.s index 17308f6ac..1ebbd26e2 100644 --- a/libsrc/c64/mou/c64-pot.s +++ b/libsrc/c64/mou/c64-pot.s @@ -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 -- 2.39.5