blob: f44f839e6b634fc68f6a90fe992a289fcb45d8af (
plain)
1
2
3
4
5
6
7
8
9
|
BOOTLOADER=./bootloader.asm
TARGET=./boot.img
all:
nasm -f bin $(BOOTLOADER) -o $(TARGET)
dd if=./boot.txt >> $(TARGET)
dd if=/dev/zero bs=512 count=1 >> $(TARGET)
clean:
rm -f $(TARGET)
|