diff options
Diffstat (limited to 'target-alpha/cpu.h')
-rw-r--r-- | target-alpha/cpu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index f606fac53b..122e2c29e6 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -422,4 +422,12 @@ static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb) env->pc = tb->pc; } +static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc, + target_ulong *cs_base, int *flags) +{ + *pc = env->pc; + *cs_base = 0; + *flags = env->ps; +} + #endif /* !defined (__CPU_ALPHA_H__) */ |