diff options
author | 2011-10-01 19:32:39 +0000 | |
---|---|---|
committer | 2011-10-01 19:32:39 +0000 | |
commit | 2ce5c97909e73d5e001495bd0d2e65604df49c7b (patch) | |
tree | fa5f78f2ecc69fbd297404b0e762d95ad96de1dd /src/emu/cpu/sh4/sh4dasm.c | |
parent | 6cca232a07a0f71a3ad5ae9519ad963da1a7f8ac (diff) |
sh3/4: fixed big-endian mode [R. Belmont]
Diffstat (limited to 'src/emu/cpu/sh4/sh4dasm.c')
-rw-r--r-- | src/emu/cpu/sh4/sh4dasm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/cpu/sh4/sh4dasm.c b/src/emu/cpu/sh4/sh4dasm.c index 4ec1f8fcd9f..62ef92eb19d 100644 --- a/src/emu/cpu/sh4/sh4dasm.c +++ b/src/emu/cpu/sh4/sh4dasm.c @@ -816,3 +816,8 @@ CPU_DISASSEMBLE( sh4 ) return DasmSH4( buffer, pc, (oprom[1] << 8) | oprom[0] ); } +CPU_DISASSEMBLE( sh4be ) +{ + return DasmSH4( buffer, pc, (oprom[0] << 8) | oprom[1] ); +} + |