提交 3e736bf4 编写于 作者: B blueswir1

Upgrade Sparc FPU version (based on patch by Aurelien Jarno)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2532 c046a42c-6fe2-441c-8c8c-71466251a162
上级 e32f879d
......@@ -238,8 +238,8 @@ typedef struct CPUSPARCState {
(0 << 24) | (MAXTL << 8) | (NWINDOWS - 1))
#else
#define GET_FSR32(env) (env->fsr)
#define PUT_FSR32(env, val) do { uint32_t _tmp = val; \
env->fsr = _tmp & 0xcfc1ffff; \
#define PUT_FSR32(env, val) do { uint32_t _tmp = val; \
env->fsr = (_tmp & 0xcfc1ffff) | (env->fsr & 0x000e0000); \
} while (0)
#endif
......
......@@ -2754,6 +2754,7 @@ void cpu_reset(CPUSPARCState *env)
env->version = GET_VER(env);
env->pc = 0x1fff0000000ULL;
#else
env->fsr = 4 << 17; /* FPU version 4 (Meiko) */
env->mmuregs[0] = (0x04 << 24); /* Impl 0, ver 4, MMU disabled */
env->pc = 0xffd00000;
#endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册