diff options
author | Danny Holman <dholman@gymli.org> | 2024-02-16 13:06:43 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-02-16 13:06:43 -0600 |
commit | 33fdc9b20c12e6c776ed76fc59d848a3ad7f6bca (patch) | |
tree | e305d66a4be29a2446506ee17897957846518125 /arch/i386/make.config | |
parent | 95606a6be7c64065d295bdabb1a94fb42108e72f (diff) |
arch: i386: roll physical memory control into VMM
The VMM should control the physical memory as well as paging. This
allows the VMM to grab frames as it sees fit.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'arch/i386/make.config')
-rw-r--r-- | arch/i386/make.config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/make.config b/arch/i386/make.config index 4729739..2c87912 100644 --- a/arch/i386/make.config +++ b/arch/i386/make.config @@ -7,10 +7,10 @@ KERNEL_ARCH_OBJS=$(ARCHDIR)/boot/boot.o \ $(ARCHDIR)/boot/isr.o \ $(ARCHDIR)/boot/idt.o \ $(ARCHDIR)/boot/gdt.o \ - $(ARCHDIR)/kernel/tty.o \ - $(ARCHDIR)/kernel/alloc.o \ + $(ARCHDIR)/kernel/framebuffer.o \ $(ARCHDIR)/kernel/multiboot.o \ $(ARCHDIR)/kernel/serial.o \ $(ARCHDIR)/kernel/pic.o \ + $(ARCHDIR)/kernel/timer.o \ $(ARCHDIR)/kernel/syscall.o \ $(ARCHDIR)/kernel/paging.o \ |