diff options
Diffstat (limited to 'src/devices/cpu/dspp')
-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: // _+ |