diff options
author | 2025-05-07 10:13:28 -0400 | |
---|---|---|
committer | 2025-05-07 10:13:40 -0400 | |
commit | cf70f82847aa45f6150919fc9d913a8feaf5c9da (patch) | |
tree | c4d7cf01b7a561f3c7ba86feb4ada1ecfa61b8ce | |
parent | 1d3003c036d6bb4cd6d8ae8c78eadc27706a36e7 (diff) |
dspp: Tweak mnemonics in disassembler
-rw-r--r-- | src/devices/cpu/dspp/dsppdasm.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/devices/cpu/dspp/dsppdasm.cpp b/src/devices/cpu/dspp/dsppdasm.cpp index 40f290bf1f3..ff534ac79c7 100644 --- a/src/devices/cpu/dspp/dsppdasm.cpp +++ b/src/devices/cpu/dspp/dsppdasm.cpp @@ -398,7 +398,10 @@ offs_t dspp_disassembler::dasm_arithmetic(std::ostream &stream, offs_t pc, const ++opidx; } - stream << "LOAD "; + if (alu_op < 8) + stream << "TRA "; + else + stream << "TRL "; if (alu_op != 1) { @@ -440,7 +443,7 @@ offs_t dspp_disassembler::dasm_arithmetic(std::ostream &stream, offs_t pc, const } case 1: // _NEG { - stream << "NEG "; + stream << "-"; break; } case 2: // _+ |