This commit is contained in:
2024-05-25 23:17:10 +03:00
parent ea8f6b4ce0
commit 3690b91e16
13 changed files with 197 additions and 17 deletions

2
isr.c
View File

@@ -55,7 +55,9 @@ void isr_call_handler(Stack *registers)
void (*handler)(Stack *registers);
handler = isr_routines[registers->id];
if (handler)
{
handler(registers);
}
}
void isr_install(void)