diff options
Diffstat (limited to 'target-cris/exec.h')
-rw-r--r-- | target-cris/exec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-cris/exec.h b/target-cris/exec.h index 77e4240e89..5f3cc00178 100644 --- a/target-cris/exec.h +++ b/target-cris/exec.h @@ -40,6 +40,11 @@ static inline void regs_to_env(void) void cpu_cris_flush_flags(CPUCRISState *env, int cc_op); void helper_movec(CPUCRISState *env, int reg, uint32_t val); +static inline int cpu_has_work(CPUState *env) +{ + return (env->interrupt_request & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI)); +} + static inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; |