Ignore:
Timestamp:
Oct 20, 2020, 1:10:09 AM (4 years ago)
Author:
chronos
Message:
  • Added: Devices form with tree view of connected devices. Device control form can be opened by double click.
  • Modifid: IN/OUT instructions now use also device group index to directly specify which device should be read/written.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CpuSingleSize/UDisassembler.pas

    r219 r220  
    6666            InstBytes := InstBytes + IntToHex(Value, 2) + ' ';
    6767            InstText := InstText + ' + ' + IntToStr(Value) + ')';
     68          end else
     69          if InstructionInfo.Params[J] = ptRegIndirectGroup then begin
     70            InstText := InstText + '(R' + IntToStr(Value);
     71            Value := Memory.Read;
     72            InstBytes := InstBytes + IntToHex(Value, 2) + ' ';
     73            InstText := InstText + ': R' + IntToStr(Value) + ')';
    6874          end;
    6975        end;
Note: See TracChangeset for help on using the changeset viewer.