Create a simple bootloader with nasm

This commit is contained in:
manzerbredes 2015-07-17 17:14:42 +04:00
parent bd68108ff3
commit c83e3bf27f
2 changed files with 22 additions and 0 deletions

8
bootloader/Makefile Normal file
View file

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