mirror of https://github.com/xqemu/xqemu.git
Explain how to use DVD images
parent
1bce7c391b
commit
82743f673c
|
@ -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`
|
||||
|
|
Loading…
Reference in New Issue