mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +00:00
Kernel/CPU: Fix awkward printing early on boot
This usage of the word "installing" seemed for me for a long time as a wrong thing, so let's make it better now.
This commit is contained in:
parent
df84fdfd2c
commit
b8f0a9c974
1 changed files with 1 additions and 2 deletions
|
@ -528,6 +528,7 @@ UNMAP_AFTER_INIT static void idt_init()
|
|||
for (u8 i = 0x11; i < 0x50; i++)
|
||||
register_interrupt_handler(i, unimp_trap);
|
||||
|
||||
dbgln("Initializing unhandled interrupt handlers");
|
||||
register_interrupt_handler(0x50, interrupt_80_asm_entry);
|
||||
register_interrupt_handler(0x51, interrupt_81_asm_entry);
|
||||
register_interrupt_handler(0x52, interrupt_82_asm_entry);
|
||||
|
@ -705,8 +706,6 @@ UNMAP_AFTER_INIT static void idt_init()
|
|||
register_interrupt_handler(0xfe, interrupt_254_asm_entry);
|
||||
register_interrupt_handler(0xff, interrupt_255_asm_entry);
|
||||
|
||||
dbgln("Installing Unhandled Handlers");
|
||||
|
||||
for (u8 i = 0; i < GENERIC_INTERRUPT_HANDLERS_COUNT; ++i) {
|
||||
auto* handler = new UnhandledInterruptHandler(i);
|
||||
handler->register_interrupt_handler();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue