mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-30 00:08:03 +00:00
Fixed keyboard interrupt
This commit is contained in:
parent
5c6ba5b6e1
commit
a35482694f
@ -130,7 +130,14 @@ namespace Interrupts
|
|||||||
if (likely(handler != (Handler *)HASHMAP_ERROR))
|
if (likely(handler != (Handler *)HASHMAP_ERROR))
|
||||||
handler->OnInterruptReceived(Frame);
|
handler->OnInterruptReceived(Frame);
|
||||||
else
|
else
|
||||||
|
{
|
||||||
error("IRQ%ld is unhandled on CPU %d.", Frame->InterruptNumber - 32, Core);
|
error("IRQ%ld is unhandled on CPU %d.", Frame->InterruptNumber - 32, Core);
|
||||||
|
if (Frame->InterruptNumber == CPU::x64::IRQ1)
|
||||||
|
{
|
||||||
|
uint8_t scancode = inb(0x60);
|
||||||
|
warn("IRQ1 is the keyboard interrupt. Scancode: %#x", scancode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (likely(apic[Core]))
|
if (likely(apic[Core]))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user