target-microblaze: Setup for 64bit addressing
[qemu/ar7.git] / linux-user / riscv / target_cpu.h
blobc5549b1120c5398d5b455057f19455e53b23ba7a
1 #ifndef TARGET_CPU_H
2 #define TARGET_CPU_H
4 static inline void cpu_clone_regs(CPURISCVState *env, target_ulong newsp)
6 if (newsp) {
7 env->gpr[xSP] = newsp;
10 env->gpr[xA0] = 0;
13 static inline void cpu_set_tls(CPURISCVState *env, target_ulong newtls)
15 env->gpr[xTP] = newtls;
18 #endif