aboutsummaryrefslogtreecommitdiff
path: root/target-sh4/op.c
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-08-22 21:30:28 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-08-22 21:30:28 +0000
commit825c69ce025d293baee28dca6538b64ea2a3900a (patch)
treee0a74806734b43da439cd2b3ebcc0d948a6122b2 /target-sh4/op.c
parentf066404827c54ada88d10ee2c267ee11555ae148 (diff)
sh4: fix tas.b @Rn instruction
(Shin-ichiro KAWASAKI, based on a patch from Andrzej Zaborowski) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5074 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/op.c')
-rw-r--r--target-sh4/op.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/target-sh4/op.c b/target-sh4/op.c
index 37ac93099a..54a5c7b6a8 100644
--- a/target-sh4/op.c
+++ b/target-sh4/op.c
@@ -592,13 +592,6 @@ void OPPROTO op_shlr16_Rn(void)
RETURN();
}
-void OPPROTO op_tasb_rN(void)
-{
- cond_t((env->gregs[PARAM1] & 0xff) == 0);
- *(int8_t *) &env->gregs[PARAM1] |= 0x80;
- RETURN();
-}
-
void OPPROTO op_movl_T0_rN(void)
{
env->gregs[PARAM1] = T0;