Create a simple bootloader with nasm
This commit is contained in:
parent
bd68108ff3
commit
c83e3bf27f
2 changed files with 22 additions and 0 deletions
8
bootloader/Makefile
Normal file
8
bootloader/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
|
||||
|
||||
bootloader.bin: bootloader.asm
|
||||
nasm -f bin -o $@ $^
|
||||
|
||||
clean:
|
||||
rm bootloader.bin
|
Loading…
Add table
Add a link
Reference in a new issue