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

#include "kernel.h"

#define INT_MAX 255 // size of our interrupts table

int int_unhandled; // counting unhandled interrupts

#endif