Ignore:
Timestamp:
Oct 14, 2020, 7:51:40 PM (4 years ago)
Author:
chronos
Message:
  • Added: Support for indirect instruction parameters used mailny for LD, ST, IN and OUT.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CpuSingleSize/UDisassembler.pas

    r216 r218  
    5555            InstText := InstText + 'R' + IntToStr(Value);
    5656          end else
     57          if InstructionInfo.Params[J] = ptRegIndirect then begin
     58            InstText := InstText + '(R' + IntToStr(Value) + ')';
     59          end else
    5760          if InstructionInfo.Params[J] = ptNumber then begin
    5861            InstText := InstText + IntToHex(Value, 8);
Note: See TracChangeset for help on using the changeset viewer.