diff options
Diffstat (limited to 'target-sparc/cpu.h')
-rw-r--r-- | target-sparc/cpu.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target-sparc/cpu.h b/target-sparc/cpu.h index 0f0e38cf2c..e5b282d391 100644 --- a/target-sparc/cpu.h +++ b/target-sparc/cpu.h @@ -564,6 +564,19 @@ static inline int cpu_mmu_index(CPUState *env1) #endif } +static inline int cpu_interrupts_enabled(CPUState *env1) +{ +#if !defined (TARGET_SPARC64) + if (env1->psret != 0) + return 1; +#else + if (env1->pstate & PS_IE) + return 1; +#endif + + return 0; +} + static inline int cpu_fpu_enabled(CPUState *env1) { #if defined(CONFIG_USER_ONLY) |