diff options
author | 2018-04-07 18:43:39 -0400 | |
---|---|---|
committer | 2018-04-07 18:43:58 -0400 | |
commit | 7a3a0a42438c45188a19466f3c9b9dbc8bd5b03a (patch) | |
tree | 35a40dab7aa67998eb2d84ee484591f1b6f11335 /src/devices/cpu/arm/armdasm.h | |
parent | 1a0fae9b4cdb8a5eb0835bb798952f5ba7f7e357 (diff) |
arm: Eliminate spurious LSL #32 shifts from disassembly (nw)
Diffstat (limited to 'src/devices/cpu/arm/armdasm.h')
-rw-r--r-- | src/devices/cpu/arm/armdasm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/arm/armdasm.h b/src/devices/cpu/arm/armdasm.h index 1e2ed19f394..4b20e7b79fb 100644 --- a/src/devices/cpu/arm/armdasm.h +++ b/src/devices/cpu/arm/armdasm.h @@ -12,10 +12,10 @@ public: virtual offs_t disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer ¶ms) override; private: - void WriteImmediateOperand( std::ostream &stream, uint32_t opcode ) const; - void WriteDataProcessingOperand( std::ostream &stream, uint32_t opcode, int printOp0, int printOp1, int printOp2 ) const; - void WriteRegisterOperand1( std::ostream &stream, uint32_t opcode ) const; - void WriteBranchAddress( std::ostream &stream, uint32_t pc, uint32_t opcode ) const; + void WriteImmediateOperand(std::ostream &stream, uint32_t opcode) const; + void WriteDataProcessingOperand(std::ostream &stream, uint32_t opcode, bool printOp0, bool printOp1) const; + void WriteRegisterOperand1(std::ostream &stream, uint32_t opcode) const; + void WriteBranchAddress(std::ostream &stream, uint32_t pc, uint32_t opcode) const; void WritePadding(std::ostream &stream, std::streampos start_position) const; }; |