add fmt.c for print function

don't process 64-bit format such as '%llu' in print function.
This commit is contained in:
2024-12-09 15:43:58 +09:00
parent c9c820840f
commit b1f7092fe2
6 changed files with 358 additions and 69 deletions

View File

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