From 82743f673c3056995cfae6bf857f80e7ac63ef0f Mon Sep 17 00:00:00 2001 From: Jannik Vogel Date: Wed, 19 Aug 2015 19:19:01 +0200 Subject: [PATCH] Explain how to use DVD images --- Getting-Started.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Getting-Started.md b/Getting-Started.md index f2147b1..efaef77 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -57,7 +57,13 @@ Launch XQEMU with something like... xbox-softmmu/qemu-system-xbox -cpu pentium3 -machine xbox,bootrom=mcpx_rom.bin -m 64 -drive file=xbox_harddisk.qcow2,index=0,media=disk,locked=on -drive index=1,media=cdrom -bios xbox_bios.bin -usb -device usb-xbox-gamepad -On Linux, you can use [KVM](http://www.linux-kvm.org/page/Main_Page) by passing 'accel=kvm,kernel_irqchip=off' to -machine. This is not yet recommended. +On Linux, you can use [KVM](http://www.linux-kvm.org/page/Main_Page) by passing `accel=kvm,kernel_irqchip=off` to -machine. This is not yet recommended. + +To run a game from a Xbox DVD image (xiso) you must specify a `file` for the DVD drive: + + xbox-softmmu/qemu-system-xbox -cpu pentium3 -machine xbox,bootrom=mcpx_rom.bin -m 64 -drive file=xbox_harddisk.qcow2,index=0,media=disk,locked=on -drive index=1,media=cdrom,file=path/to/xbox_game.iso -bios xbox_bios.bin -usb -device usb-xbox-gamepad + +You can use [extract-xiso](http://sourceforge.net/projects/extract-xiso/) to create xiso images from a folder (which should contain a "default.xbe"). ## Debugging Tips * QEMU can host a gdb stub! Launch with ```-s -S```, and with gdb run `target remote localhost:1234`