diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-23 22:05:28 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-23 22:05:28 +0000 |
commit | e80e1cc4b18d388227d2fa6b8551929a381d2490 (patch) | |
tree | ffa318af5e2d0019e5f47dc26b70a3f0f64ecf94 /cpu-exec.c | |
parent | f24e5695e5fab2d4d143c34ffe8164ddeac9b12b (diff) |
halt state support for ppc
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1657 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index de1fff2122..9543c636c7 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -262,6 +262,16 @@ int cpu_exec(CPUState *env1) return EXCP_HALTED; } } +#elif defined(TARGET_PPC) + if (env1->msr[MSR_POW]) { + if (env1->msr[MSR_EE] && + (env1->interrupt_request & + (CPU_INTERRUPT_HARD | CPU_INTERRUPT_TIMER))) { + env1->msr[MSR_POW] = 0; + } else { + return EXCP_HALTED; + } + } #endif cpu_single_env = env1; |