Changed debug output to use INT 2D

Ooops! This one was missing! Sorry!

svn path=/trunk/; revision=937
This commit is contained in:
Eric Kohl 2000-01-18 11:04:53 +00:00
parent 88cb154d19
commit 8234dea660

View file

@ -30,6 +30,7 @@ static exception_hook* exception_hooks[256]={NULL,};
#define STR(x) _STR(x)
extern void interrupt_handler2e(void);
extern void interrupt_handler2d(void);
extern ULONG init_stack;
extern ULONG init_stack_top;
@ -428,5 +429,6 @@ asmlinkage void KeInitExceptions(void)
set_interrupt_gate(i,(int)exception_handler_unknown);
}
set_system_call_gate(0x2d,(int)interrupt_handler2d);
set_system_call_gate(0x2e,(int)interrupt_handler2e);
}