Holland. QEMU is a FAST! processor emulator using dynamic translation to achieve good emulation speed, QEMU has two operating modes: * Full system emulation. In this mode, QEMU emulates a full system (for example a PC), including a processor and various peripherals. It can be used to launch different Operating Systems without rebooting the PC or to debug system code. * User mode emulation (Linux host only). In this mode, QEMU can launch Linux processes compiled for one CPU on another CPU. It can be used to launch the Wine Windows API emulator or to ease cross-compilation and cross-debugging. -- It's nice to see NetBSD/x86 running perfectly with QEMU!
20 lines
755 B
Text
20 lines
755 B
Text
$NetBSD: patch-ai,v 1.1.1.1 2004/11/09 13:05:34 xtraeme Exp $
|
|
|
|
--- target-ppc/cpu.h.orig 2004-07-10 21:20:09.000000000 +0300
|
|
+++ target-ppc/cpu.h
|
|
@@ -182,9 +182,15 @@ void cpu_ppc_close(CPUPPCState *s);
|
|
/* you can call this signal handler from your SIGBUS and SIGSEGV
|
|
signal handlers to inform the virtual CPU of exceptions. non zero
|
|
is returned if the signal was handled by the virtual CPU. */
|
|
+#ifdef __NetBSD__
|
|
+union siginfo;
|
|
+int cpu_ppc_signal_handler(int host_signum, union siginfo *info,
|
|
+ void *puc);
|
|
+#else
|
|
struct siginfo;
|
|
int cpu_ppc_signal_handler(int host_signum, struct siginfo *info,
|
|
void *puc);
|
|
+#endif
|
|
|
|
void do_interrupt (CPUPPCState *env);
|
|
void cpu_loop_exit(void);
|