4 lines
129 B
Bash
4 lines
129 B
Bash
|
echo Compiling...
|
||
|
nasm -f bin boot.asm -o boot.bin
|
||
|
echo Compiled, starting VM...
|
||
|
qemu-system-i386 -drive format=raw,file=boot.bin
|