diff options
Diffstat (limited to 'src/emu/cpu/arm/armdasm.c')
-rw-r--r-- | src/emu/cpu/arm/armdasm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/emu/cpu/arm/armdasm.c b/src/emu/cpu/arm/armdasm.c index 0d596fb5597..fedb5cdc24e 100644 --- a/src/emu/cpu/arm/armdasm.c +++ b/src/emu/cpu/arm/armdasm.c @@ -404,4 +404,3 @@ CPU_DISASSEMBLE( arm_be ) UINT32 opcode = oprom[3] | (oprom[2] << 8) | (oprom[1] << 16) | (oprom[0] << 24); return 4 | arm_disasm(buffer, pc, opcode); } - |