summaryrefslogtreecommitdiff
path: root/kernel/interrupts.h
blob: bd110d4b5c3a843b82aa12b9267b79285cee45da (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef INTERRUPTS_H
#define INTERRUPTS_H

#include <stdint.h>

#define INT_MAX 255 // size of our interrupts table

void int_install();
void int_init(uint16_t sel);
#endif