SIM108: fix

This commit is contained in:
Jörg Thalheim
2025-08-26 15:23:08 +02:00
parent d4bdaec586
commit db5571d623
6 changed files with 11 additions and 40 deletions

View File

@@ -93,12 +93,7 @@ def get_machine_options() -> str:
system = platform.system().lower()
# Determine accelerator based on OS
if system == "darwin":
# macOS uses Hypervisor.framework
accel = "hvf"
else:
# Linux and others use KVM
accel = "kvm"
accel = "hvf" if system == "darwin" else "kvm"
if arch in ("x86_64", "amd64", "i386", "i686"):
# For x86_64, use q35 for modern PCIe support