1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/hwint.c

33 lines
1.2 KiB
C
Raw Normal View History

2017-11-02 22:51:24 -04:00
#include "logger.h"
struct IsrRegisters {
unsigned int ds; // Data segment selector
unsigned int edi, esi, ebp, esp, ebx, edx, ecx, eax; // Pushed by pusha.
unsigned int int_no, err_code; // Interrupt number and error code (if applicable)
unsigned int eip, cs, eflags, useresp, ss; // Pushed by the processor automatically.
};
static const char *const messages[] = {
2017-11-02 22:57:19 -04:00
"Unhandled hardware interrupt: 0",
"Unhandled hardware interrupt: 1",
"Unhandled hardware interrupt: 2",
"Unhandled hardware interrupt: 3",
"Unhandled hardware interrupt: 4",
"Unhandled hardware interrupt: 5",
"Unhandled hardware interrupt: 6",
"Unhandled hardware interrupt: 7",
"Unhandled hardware interrupt: 8",
"Unhandled hardware interrupt: 9",
"Unhandled hardware interrupt: 10",
"Unhandled hardware interrupt: 11",
"Unhandled hardware interrupt: 12",
"Unhandled hardware interrupt: 13",
"Unhandled hardware interrupt: 14",
"Unhandled hardware interrupt: 15",
2017-11-02 22:51:24 -04:00
};
void hwint_handler(struct IsrRegisters regs)
{
logger_warn(messages[regs.int_no - 32]);
}