9 lines
207 B
C
9 lines
207 B
C
#pragma once
|
|
|
|
#include "isr.h"
|
|
|
|
typedef void (*irq_handler_t)(const isr_frame_t*);
|
|
|
|
void remap_pic();
|
|
void handle_irq(const isr_frame_t* frame);
|
|
void register_irq_handler(uint8_t irq, irq_handler_t handler); |