Luna/kernel/include/interrupts/IRQ.h

7 lines
98 B
C
Raw Normal View History

2022-09-05 14:13:51 +00:00
#pragma once
#include "Context.h"
2022-09-05 14:13:51 +00:00
namespace IRQ
{
void interrupt_handler(Context* context);
2022-09-05 14:13:51 +00:00
}