Files
my-os-project2/run/qemu-x86_64-hdd.sh

12 lines
144 B
Bash
Executable File

#!/bin/sh
set -x
qemu-system-x86_64 \
-machine pc \
-m 4G \
-boot d \
-serial stdio \
-drive file=disk.hdd,format=raw,if=ide \
$@