projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56e0794
)
Fix inc8 and dec8 operations, by Magnus Damm.
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 26 Apr 2007 23:50:46 +0000
(23:50 +0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 26 Apr 2007 23:50:46 +0000
(23:50 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2731
c046a42c
-6fe2-441c-8c8c-
71466251a162
target-sh4/op.c
patch
|
blob
|
history
diff --git
a/target-sh4/op.c
b/target-sh4/op.c
index d3b68bc665229fac9d8c3f08e7560ff9625e39e6..758aa53b7c032cfbb0e7001051754296673b084a 100644
(file)
--- a/
target-sh4/op.c
+++ b/
target-sh4/op.c
@@
-737,7
+737,7
@@
void OPPROTO op_dec4_rN(void)
void OPPROTO op_dec8_rN(void)
{
- env->gregs[PARAM1] -=
4
;
+ env->gregs[PARAM1] -=
8
;
RETURN();
}
@@
-761,7
+761,7
@@
void OPPROTO op_inc4_rN(void)
void OPPROTO op_inc8_rN(void)
{
- env->gregs[PARAM1] +=
4
;
+ env->gregs[PARAM1] +=
8
;
RETURN();
}