add time.c

This commit is contained in:
2024-12-05 21:41:07 +09:00
parent 7acbe88026
commit dbb2d58280
3 changed files with 71 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ PROG = boot
SRCS = srt0.S gdt.S boot.c
OBJS = srt0.o gdt.o boot.o
ESRCS = console.c print.c a20.c
ESRCS = console.c print.c a20.c time.c
OBJS += $(ESRCS:.c=.o)
include $(SDIR)/Makefile.inc