🆕 uart驱动

This commit is contained in:
fslongjin
2022-04-15 15:23:17 +08:00
parent be8ac71aa9
commit 22359344e4
8 changed files with 188 additions and 26 deletions

View File

@ -125,6 +125,11 @@ HPET.o: driver/timers/HPET/HPET.c
timer.o: driver/timers/timer.c
gcc $(CFLAGS) -c driver/timers/timer.c -o driver/timers/timer.o
OBJ_LIST += uart.o
LD_LIST += driver/uart/uart.o
uart.o: driver/uart/uart.c
gcc $(CFLAGS) -c driver/uart/uart.c -o driver/uart/uart.o
all: kernel