aboutsummaryrefslogtreecommitdiff
path: root/src/mouse.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2008-06-12 22:59:43 -0400
committerKevin O'Connor <kevin@koconnor.net>2008-06-12 22:59:43 -0400
commit15c1f2207f4d406bb56032cef5920f474f32de88 (patch)
tree26094bfcb85b116a5786e574ba353bd8e541f84e /src/mouse.c
parent2e3eeebc33bcf780912f3b10fb23f82d4f9afb22 (diff)
downloadseabios-hppa-15c1f2207f4d406bb56032cef5920f474f32de88.zip
seabios-hppa-15c1f2207f4d406bb56032cef5920f474f32de88.tar.gz
seabios-hppa-15c1f2207f4d406bb56032cef5920f474f32de88.tar.bz2
Support config driven debugging of each irq handler.
This allows one to easily enable verbose output from handlers.
Diffstat (limited to 'src/mouse.c')
-rw-r--r--src/mouse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mouse.c b/src/mouse.c
index 6c21499..23e17de 100644
--- a/src/mouse.c
+++ b/src/mouse.c
@@ -6,7 +6,7 @@
// This file may be distributed under the terms of the GNU GPLv3 license.
#include "biosvar.h" // struct bregs
-#include "util.h" // debug_enter
+#include "util.h" // debug_isr
#define DEBUGF1(fmt, args...) bprintf(0, fmt , ##args)
#define DEBUGF(fmt, args...)
@@ -415,7 +415,7 @@ int74_function()
void VISIBLE16
handle_74()
{
- //debug_isr();
+ debug_isr(DEBUG_ISR_74);
irq_enable();
int74_function();