diff options
Diffstat (limited to 'target-sh4/cpu.h')
-rw-r--r-- | target-sh4/cpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-sh4/cpu.h b/target-sh4/cpu.h index 686b6684d2..2f42e6015d 100644 --- a/target-sh4/cpu.h +++ b/target-sh4/cpu.h @@ -141,6 +141,11 @@ void sh4_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)); void cpu_sh4_write_mmaped_utlb_addr(CPUSH4State *s, target_phys_addr_t addr, uint32_t mem_value); +static inline void cpu_set_tls(CPUSH4State *env, target_ulong newtls) +{ + env->gbr = newtls; +} + #include "softfloat.h" #define CPUState CPUSH4State |