mirror of https://github.com/x64dbg/zydis
Merge pull request #12 from mrexodia/patch-1
changes AccessMode to Action in frmMain
This commit is contained in:
commit
70cb75eec7
|
@ -931,7 +931,7 @@ begin
|
||||||
begin
|
begin
|
||||||
O := NodeData^.Definition.Operands.Operands[I];
|
O := NodeData^.Definition.Operands.Operands[I];
|
||||||
S := S + IntToStr(Integer(O.OperandType)) + ',' + IntToStr(Integer(O.Encoding)) + ',' +
|
S := S + IntToStr(Integer(O.OperandType)) + ',' + IntToStr(Integer(O.Encoding)) + ',' +
|
||||||
IntToStr(Integer(O.AccessMode)) + ',';
|
IntToStr(Integer(O.Action)) + ',';
|
||||||
end;
|
end;
|
||||||
Clipboard.AsText := S;
|
Clipboard.AsText := S;
|
||||||
end;
|
end;
|
||||||
|
@ -959,7 +959,7 @@ begin
|
||||||
O := NodeData^.Definition.Operands.Operands[J];
|
O := NodeData^.Definition.Operands.Operands[J];
|
||||||
O.OperandType := TOperandType(StrToInt(A[I]));
|
O.OperandType := TOperandType(StrToInt(A[I]));
|
||||||
O.Encoding := TOperandEncoding(StrToInt(A[I + 1]));
|
O.Encoding := TOperandEncoding(StrToInt(A[I + 1]));
|
||||||
O.AccessMode := TOperandAccessMode(StrToInt(A[I + 2]));
|
O.Action := TOperandAction(StrToInt(A[I + 2]));
|
||||||
Inc(I, 3);
|
Inc(I, 3);
|
||||||
Inc(J);
|
Inc(J);
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue