feat(pic): move pic.c in pic dir

This commit is contained in:
Malo Lecomte 2021-07-17 10:40:08 +02:00
parent 1cb57e6a9f
commit 26bdf84db4
5 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ OBJS = \
gdt.o \
idt.o \
isr.o \
pic.o \
pic/pic.o \
pic/keyboard.o \
utils/ring_buffer.o

View File

@ -1,6 +1,6 @@
#include "idt.h"
#include "stdio.h"
#include "pic.h"
#include "pic/pic.h"
#include "io.h"
#include "pic/keyboard.h"

2
k/k.c
View File

@ -26,7 +26,7 @@
#include "gdt.h"
#include "idt.h"
#include "multiboot.h"
#include "pic.h"
#include "pic/pic.h"
#include "serial.h"
#include "stdio.h"