summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/arm7/arm7dasm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/arm7/arm7dasm.c')
-rw-r--r--src/emu/cpu/arm7/arm7dasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/arm7/arm7dasm.c b/src/emu/cpu/arm7/arm7dasm.c
index 4f40a9a6b78..dbecb52e2fb 100644
--- a/src/emu/cpu/arm7/arm7dasm.c
+++ b/src/emu/cpu/arm7/arm7dasm.c
@@ -241,7 +241,7 @@ UINT32 arm7_disasm( char *pBuf, UINT32 pc, UINT32 opcode )
{
pBuf += sprintf(pBuf, "LDRD%s", pConditionCode);
}
- else if (((opcode & 0x60) == 0x60) && !(opcode & 0x100000)) // bit 20 = 0, bits 5&6 = 11 is ARMv5 STRD
+ else if (((opcode & 0x60) == 0x60) && !(opcode & 0x100000)) // bit 20 = 0, bits 5&6 = 11 is ARMv5 STRD
{
pBuf += sprintf(pBuf, "STRD%s", pConditionCode);
}