Initial commit

This commit is contained in:
2021-08-28 07:06:31 +01:00
commit ad942b3d8b
4 changed files with 76 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
disk.img: boot kernel
cat boot.bin kernel.bin > disk.img
boot.bin: boot.asm
nasm boot.asm -o $@
kernel.bin: kernel.asm
nasm kernel.asm -o $@