Changeset 220 for branches/CpuSingleSize/UDisassembler.pas
- Timestamp:
- Oct 20, 2020, 1:10:09 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CpuSingleSize/UDisassembler.pas
r219 r220 66 66 InstBytes := InstBytes + IntToHex(Value, 2) + ' '; 67 67 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) + ')'; 68 74 end; 69 75 end;
Note:
See TracChangeset
for help on using the changeset viewer.