Search code examples
x86-64qemupowerpcplaystation3

PPC64/Power7 emulation on x86_64


I have used CellSDK in past to emulate/debug and test code for powerpc7 architecture on x86_64 machines. Now i want to emulate test code for upcoming (Google/intel etc) PowerPC8 compiler is available, can someone tell me qemu that can emulate ppc64 on x86_64 so i can test code(scheduler) on it .


Solution

  • The minimum Requirement to emulate ppc kernel on Qemu is qemu binaries kenrel image and rootfs.

    For arm its like this qemu-system-arm -M versatilepb -m 128M -kernel zImage -hda rootfs.ext3 -no-reboot -show-cursor -usb -usbdevice wacom-tablet -no-reboot -serial stdio -m 256 --append "root=/dev/sda rw console=ttyAMA0,115200 console=tty mem=256M highres=off console=ttyS0"

    For more details on ppc_64 have a look at

    http://gmplib.org/~tege/qemu.html

    here 10 and 11