diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-29 19:52:22 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-29 19:52:22 +0000 |
commit | c5e814b2719572abafc4359ef8ec3effd2087233 (patch) | |
tree | dbcf859d2d98ac1d377c064c3ab0dcf609f6fc88 /target-sh4 | |
parent | ed8e0a4d4b57d90c8e049bfd030c6829625c47af (diff) |
Fix rte opcode, by Magnus Damm.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3273 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-sh4/translate.c b/target-sh4/translate.c index fe3d0e9458..35b6f08dcc 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -277,7 +277,7 @@ void decode_opc(DisasContext * ctx) case 0x0038: /* ldtlb */ assert(0); /* XXXXX */ return; - case 0x004b: /* rte */ + case 0x002b: /* rte */ CHECK_NOT_DELAY_SLOT gen_op_rte(); ctx->flags |= DELAY_SLOT; ctx->delayed_pc = (uint32_t) - 1; |