aboutsummaryrefslogtreecommitdiff
path: root/src/boot.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/boot.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/boot.c')
-rw-r--r--src/boot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.c b/src/boot.c
index 336d869..09d28e8 100644
--- a/src/boot.c
+++ b/src/boot.c
@@ -200,7 +200,7 @@ do_boot(u16 seq_nr)
void VISIBLE16
handle_18()
{
- debug_enter(NULL);
+ debug_enter(NULL, DEBUG_HDL_18);
u16 seq = GET_EBDA(ipl.sequence) + 1;
do_boot(seq);
}
@@ -209,6 +209,6 @@ handle_18()
void VISIBLE16
handle_19()
{
- debug_enter(NULL);
+ debug_enter(NULL, DEBUG_HDL_19);
do_boot(0);
}