Microkernel based hobby OS
at main 718 B view raw
1@echo off 2echo. 3echo ═══════════════════════════════════════════════════════ 4echo Booting AethelOS - The Symbiotic Operating System 5echo ═══════════════════════════════════════════════════════ 6echo. 7echo Starting QEMU with AethelOS ISO... 8echo. 9 10"C:\Program Files\qemu\qemu-system-x86_64.exe" ^ 11 -cdrom aethelos.iso ^ 12 -hda aethelos-test.img ^ 13 -boot d ^ 14 -serial file:serial.log ^ 15 -m 256M ^ 16 -display gtk ^ 17 -no-reboot ^ 18 -no-shutdown ^ 19 -d guest_errors 20 21echo. 22echo QEMU exited. 23pause