projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
022a22c
)
Fix write to K0 bits in Config0, by Aurelien Jarno.
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 22 Jun 2007 11:50:17 +0000
(11:50 +0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 22 Jun 2007 11:50:17 +0000
(11:50 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3006
c046a42c
-6fe2-441c-8c8c-
71466251a162
target-mips/op.c
patch
|
blob
|
history
diff --git
a/target-mips/op.c
b/target-mips/op.c
index a65977af4cba661370b6d4e0c5725247b653a828..66e27e298a1c5e70984f93c72b39ce6efb499e59 100644
(file)
--- a/
target-mips/op.c
+++ b/
target-mips/op.c
@@
-1433,7
+1433,7
@@
void op_mtc0_ebase (void)
void op_mtc0_config0 (void)
{
- env->CP0_Config0 = (env->CP0_Config0 & 0x81FFFFF8) | (T0 & 0x0000000
1
);
+ env->CP0_Config0 = (env->CP0_Config0 & 0x81FFFFF8) | (T0 & 0x0000000
7
);
RETURN();
}