Added multiboot header, ports methods and added new part of libc(string)

This commit is contained in:
ice-bit
2019-07-03 12:15:40 +02:00
parent 7650b9b8a2
commit 79817e6610
7 changed files with 223 additions and 0 deletions

8
kernel/cpu/Makefile Normal file
View File

@@ -0,0 +1,8 @@
OBJS = multiboot.asm.o kernel_load.asm.o ports.asm.o
ASM = nasm
ASMFLAGS = -f elf
all: $(OBJS)
%.asm.o:
$(ASM) $(ASMFLAGS) $< -o $@