aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2019-12-21 22:22:03 +0100
committerMarvin Borner2019-12-21 22:22:03 +0100
commit499784a824c541001c2fd52ae95eba88dcfc952b (patch)
treec3c26d7c8a3b9291d909f4655b7d27a5ae2369bc /Makefile
parent38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (diff)
Many debugging/serial improvements
Sorry for the little information, but I did many things :)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e8c01e3..a51af76 100644
--- a/Makefile
+++ b/Makefile
@@ -92,29 +92,29 @@ debug:
@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
+ @qemu-system-i386 ${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
+ @qemu-system-i386 ${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
+ @qemu-system-i386 ${QEMU_OPTIONS} -drive file=./build/hdd10M.img,format=raw
@echo "[END OF CONNECTION]"
debugHDD:
@echo "Starting simulation..."
@echo "[SERIAL OUTPUT]"
- @qemu-system-x86_64 ${QEMU_OPTIONS} -drive file=./build/hdd10M.img,format=raw
+ @qemu-system-i386 ${QEMU_OPTIONS} -drive file=./build/hdd10M.img,format=raw
@echo "[END OF CONNECTION]"
bochs: build
@head -c 10485760 /dev/zero > ./build/hdd10M.img
- @qemu-system-x86_64 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw
+ @qemu-system-i386 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw
@bochs -f bochs.txt
bochsHDD: