From 4895dc77126a5282a784151c816f696516a28139 Mon Sep 17 00:00:00 2001 From: Chloe M Date: Thu, 9 Jul 2026 21:13:49 -0400 Subject: [PATCH] tools: Add QEMU x64 run wrapper Signed-off-by: Chloe M --- tools/qemu-x64.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 tools/qemu-x64.sh diff --git a/tools/qemu-x64.sh b/tools/qemu-x64.sh new file mode 100755 index 0000000..a46c3d5 --- /dev/null +++ b/tools/qemu-x64.sh @@ -0,0 +1,18 @@ +#!/bin/sh +# +# Copyright (c) 2026, Chloe M. +# Provided under the BSD-3 clause +# +# Description: QEMU x86_64 run wrapper +# Author: Chloe M. +# + +qemu-system-x86_64 \ + -cdrom artifacts/ptos.iso \ + --enable-kvm \ + -m 2G \ + -serial stdio \ + -device virtio-vga-gl \ + -display sdl,gl=on \ + -smp 4 \ + -cpu host