summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rsp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-10-29 09:51:05 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-10-29 09:51:05 -0400
commit65745d0e767de5cb035fb19c8da079f56ea03e38 (patch)
treebb7886275d220975cd6fefae675703624ca5e180 /src/devices/cpu/rsp
parente7624770d2b1bda2804f67077e5f59dbd4cf02e9 (diff)
rsp: Add 32-bit opcode alignment for disassembly
Diffstat (limited to 'src/devices/cpu/rsp')
-rw-r--r--src/devices/cpu/rsp/rsp_dasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/rsp/rsp_dasm.cpp b/src/devices/cpu/rsp/rsp_dasm.cpp
index dec44596d45..6db58a28f4a 100644
--- a/src/devices/cpu/rsp/rsp_dasm.cpp
+++ b/src/devices/cpu/rsp/rsp_dasm.cpp
@@ -230,7 +230,7 @@ void rsp_disassembler::disasm_swc2(std::ostream &stream, uint32_t op)
u32 rsp_disassembler::opcode_alignment() const
{
- return 1;
+ return 4;
}
offs_t rsp_disassembler::dasm_one(std::ostream &stream, offs_t pc, u32 op)