forked from Bananymous/banan-os
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:
parent
7c6d474a3a
commit
54043288cb
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue