From e8a93c5316fea66ef570a21f17c393b8d2976fd9 Mon Sep 17 00:00:00 2001 From: espes Date: Tue, 8 Sep 2015 09:58:39 +1000 Subject: [PATCH] Updated Getting Started (markdown) --- Getting-Started.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index e12f395..260fab9 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -57,16 +57,13 @@ Create an Xbox hard-disk image: 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 + 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-hub,bus=usb-bus.0,port=3 -device usb-xbox-gamepad,bus=usb-bus.0,port=3.2 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 skip the Xbox logo animation you can pass `short_animation` to the -machine option (Example: `-machine xbox,short_animation,bootrom=mcpx_rom.bin`). -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"). +To run a game from a Xbox DVD image (xiso) you must specify a `file` for the DVD device ## Debugging Tips * QEMU can host a gdb stub! Launch with ```-s -S```, and with gdb run `target remote localhost:1234`