Updated Getting Started (markdown)

espes 2015-09-08 09:58:39 +10:00
parent bb9e9639cc
commit e8a93c5316
1 changed files with 3 additions and 6 deletions

@ -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`