Commit initial

This commit is contained in:
2020-04-17 17:44:23 +02:00
commit ea623dfa61
54 changed files with 7297 additions and 0 deletions

8
boot/bootloader/Makefile Normal file
View File

@ -0,0 +1,8 @@
.PHONY: clean
all: bootsect.bin
bootsect.bin: bootsect.asm
nasm -f bin -o $@ $^
clean:
-rm -f bootsect.bin