d0p1 🏳️⚧️
a9fec6e18c
Kernel is now at 0xC0100000, but still we use 4MiB pages, instruction like 'invlpg' which are invalid for cpu prior to 486, and we don't ensure multiboot structures are mapped. Still lot of work
12 lines
293 B
Makefile
12 lines
293 B
Makefile
KERNEL = vmstupid
|
|
SRCS = boot/head.s \
|
|
kernel.s gdt.s pic.s isr.s idt.s \
|
|
lib/log.s drivers/serial.s
|
|
INCS = sys/multiboot.inc \
|
|
sys/i386/cpuid.inc \
|
|
sys/i386/mmu.inc \
|
|
sys/i386/registers.inc
|
|
|
|
include $(TOPDIR)/share/mk/stupid.kernel.mk
|
|
#include $(TOPDIR)/share/mk/stupid.inc.mk
|