feat(isr): add isr files to Makefile

This commit is contained in:
Malo Lecomte 2021-07-15 00:38:12 +02:00
parent 3587364471
commit 2b3d6372cf
2 changed files with 3 additions and 1 deletions

View File

@ -32,7 +32,8 @@ OBJS = \
memory.o \
serial.o \
gdt.o \
idt.o
idt.o \
isr.o
DEPS = $(OBJS:.o=.d)

View File

@ -1,4 +1,5 @@
#include "idt.h"
#include "isr.h"
static struct idt idt = { 0 };