12 lines
259 B
C
12 lines
259 B
C
/*----------------*\
|
|
|Nanite OS |
|
|
|Copyright (C) 2026|
|
|
|Xircon |
|
|
\*----------------*/
|
|
#pragma once
|
|
#include "isr.h"
|
|
|
|
typedef void (*IRQHandler)(Registers* regs);
|
|
|
|
void IRQ_Initialize();
|
|
void IRQ_RegisterHandler(int irq, IRQHandler handler); |