diff options
author | 2022-03-27 13:22:33 +1100 | |
---|---|---|
committer | 2022-03-27 13:22:33 +1100 | |
commit | b6df0d2d3d6ab20be4f3cea9a1af3b5814ce80d6 (patch) | |
tree | d7495aa17467a71c67113dc8fbe1a82b30566ab4 /src/devices/cpu/arm7/arm7dasm.cpp | |
parent | 2a3c402cae871619369d2a671657dd9a0e45b330 (diff) |
srcclean and manual tidying up in preparation for 0.242 release
Diffstat (limited to 'src/devices/cpu/arm7/arm7dasm.cpp')
-rw-r--r-- | src/devices/cpu/arm7/arm7dasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/arm7/arm7dasm.cpp b/src/devices/cpu/arm7/arm7dasm.cpp index 63d442080b4..7e59fdfaf98 100644 --- a/src/devices/cpu/arm7/arm7dasm.cpp +++ b/src/devices/cpu/arm7/arm7dasm.cpp @@ -354,7 +354,7 @@ u32 arm7_disassembler::arm7_disasm( std::ostream &stream, uint32_t pc, uint32_t /* xxxx 0001 0B00 nnnn dddd 0000 1001 mmmm */ util::stream_format( stream, "SWP%s%s", pConditionCode, (opcode & 0x400000)?"B":"" ); //Bit 22 = Byte/Word selection WritePadding(stream, start_position); - + //Rd, Rm, [Rn] util::stream_format( stream, "R%d, R%d, [R%d]", (opcode>>12)&0xf, opcode&0xf, (opcode>>16)&0xf ); @@ -637,7 +637,7 @@ u32 arm7_disassembler::arm7_disasm( std::ostream &stream, uint32_t pc, uint32_t { /* immediate form */ util::stream_format( stream, "[R%d%s", rn, (opcode&0x01000000)?"":"]" ); - + //hide zero offsets if(opcode&0xfff) { stream << ", #"; |