diff options
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -86,6 +86,13 @@ debug: @echo "[SERIAL OUTPUT]" @qemu-system-x86_64 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw @echo "[END OF CONNECTION]" + +image: build + @echo "Starting simulation..." + @head -c 10485760 /dev/zero > ./build/hdd10M.img + @echo "[SERIAL OUTPUT]" + @qemu-system-x86_64 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw + @echo "[END OF CONNECTION]" @printf "\n" @echo "[SERIAL OUTPUT]" @qemu-system-x86_64 ${QEMU_OPTIONS} -drive file=./build/hdd10M.img,format=raw @@ -105,4 +112,4 @@ bochs: build bochsHDD: @bochs -f bochs.txt -.PHONY: build clean cross test debug debugHDD bochs bochsHDD
\ No newline at end of file +.PHONY: build clean cross test debug image debugHDD bochs bochsHDD
\ No newline at end of file |