add CPUID probe

Just print vendor, Hypervisor...
This commit is contained in:
Hojun-Cho
2024-12-09 21:28:45 +09:00
parent b1f7092fe2
commit 98601ac381
4 changed files with 61 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 = pccon.c sricon.c print.c fmt.c a20.c time.c mem.c
ESRCS = pccon.c sricon.c print.c fmt.c a20.c time.c mem.c cpu.c
OBJS += $(ESRCS:.c=.o)
include $(SDIR)/Makefile.inc