blob: c9438a69830b421e9070708b89232d5b78270501 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
boot.img: print printb
cat print printb > boot.img
print: print.asm
nasm -Wall print.asm
printb: printb.asm
nasm -Wall printb.asm
.PHONY: run
run: boot.img
qemu-system-i386 -drive file=boot.img,format=raw,index=0,if=floppy
|