]> git.proxmox.com Git - mirror_qemu.git/commitdiff
Fix rte opcode, by Magnus Damm.
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 29 Sep 2007 19:52:22 +0000 (19:52 +0000)
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 29 Sep 2007 19:52:22 +0000 (19:52 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3273 c046a42c-6fe2-441c-8c8c-71466251a162

target-sh4/translate.c

index fe3d0e94587e3ed0e15817db7c781921ef3a43f1..35b6f08dccb70cb80991d404e095e5cd8d7ac07c 100644 (file)
@@ -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;