You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- all: boot.bin
- dd if=boot.bin of=boot.img bs=512 count=1 conv=notrunc
-
- boot.bin: boot.asm
- nasm $^ -o $@
-
- run:
- bochs -f bochsrc
-
- clean:
- rm -f *.img *.bin *.txt
|