Kernel: Move CPUID out of arch/

CPUID instructions behaves the same on x86 and x86_64. I am not
planning on supporting any non x86 based architectures.
This commit is contained in:
Bananymous 2023-01-23 18:12:52 +02:00
parent 7c6d474a3a
commit 54043288cb
3 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,7 @@ BUILDDIR=$(abspath build)
KERNEL_OBJS= \
$(KERNEL_ARCH_OBJS) \
kernel/build_libc.o \
kernel/CPUID.o \
kernel/font.o \
kernel/Input.o \
kernel/kernel.o \

View File

@ -6,7 +6,6 @@ KERNEL_ARCH_LIBS=
KERNEL_ARCH_OBJS= \
$(ARCHDIR)/APIC.o \
$(ARCHDIR)/boot.o \
$(ARCHDIR)/CPUID.o \
$(ARCHDIR)/IDT.o \
$(ARCHDIR)/MMU.o \