Skip to content

Instantly share code, notes, and snippets.

@brunocastello
Last active May 16, 2022 17:38
Show Gist options
  • Save brunocastello/bd6b4daa13165251bf0419c5209d2644 to your computer and use it in GitHub Desktop.
Save brunocastello/bd6b4daa13165251bf0419c5209d2644 to your computer and use it in GitHub Desktop.
Run Windows 98 SE with QEMU-3Dfx
#!/bin/sh
qemu-3dfx/bin/qemu-system-i386 \
-name "Windows 98" \
-L pc-bios -nodefaults -no-hpet -no-reboot -display sdl \
-M pc,accel=tcg -cpu pentium3 -m 1024 \
-drive id=root,format=raw,file=Disks/Win98.img \
-drive id=drive0,media=cdrom \
-device VGA -device sb16 -device rtl8139,netdev=net0 \
-netdev user,id=net0,hostfwd=tcp::8080-:80,hostfwd=tcp::2222-:22 \
-rtc base=localtime,clock=host -boot c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment