diff options
author | Yongbok Kim <yongbok.kim@imgtec.com> | 2014-11-01 05:28:35 +0000 |
---|---|---|
committer | Leon Alrae <leon.alrae@imgtec.com> | 2014-11-03 11:48:35 +0000 |
commit | e97a391d201c0a7ae4dfd3bb90890191f0e24780 (patch) | |
tree | d90c127c7d0bd88dc4538542c3a38b6bb7136435 /target-mips/op_helper.c | |
parent | 2d9e48bc041d9281f305ee82ae97776eb5ef0aab (diff) | |
download | qemu-e97a391d201c0a7ae4dfd3bb90890191f0e24780.tar.gz qemu-e97a391d201c0a7ae4dfd3bb90890191f0e24780.tar.bz2 qemu-e97a391d201c0a7ae4dfd3bb90890191f0e24780.zip |
target-mips: add MSA defines and data structure
add defines and data structure for MIPS SIMD Architecture
Reviewed-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 99bdbcf5d0..1b1c3048a4 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -1589,6 +1589,7 @@ void helper_mtc0_config5(CPUMIPSState *env, target_ulong arg1) { env->CP0_Config5 = (env->CP0_Config5 & (~env->CP0_Config5_rw_bitmask)) | (arg1 & env->CP0_Config5_rw_bitmask); + compute_hflags(env); } void helper_mtc0_lladdr(CPUMIPSState *env, target_ulong arg1) |