From 639a87005d2226bf596496f1483471ea230cecfb Mon Sep 17 00:00:00 2001 From: heckeralt Date: Sat, 21 Sep 2024 14:10:51 -0400 Subject: [PATCH] Add compile.sh --- compile.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 compile.sh diff --git a/compile.sh b/compile.sh new file mode 100644 index 0000000..4eb6e73 --- /dev/null +++ b/compile.sh @@ -0,0 +1,4 @@ +echo Compiling... +nasm -f bin boot.asm -o boot.bin +echo Compiled, starting VM... +qemu-system-i386 -drive format=raw,file=boot.bin \ No newline at end of file