Example #1
0
 public static string FormatOperation(X64Instruction instruction)
 {
     return(instruction.Name);
 }
Example #2
0
 public static string FormatOperation(X64Instruction instruction, string operand1, string operand2)
 {
     return(instruction.Name + " " + operand1 + ", " + operand2);
 }
Example #3
0
 public static string FormatOperation(X64Instruction instruction, X64StorageLocation operand1, X64StorageLocation operand2, X64StorageLocation operand3)
 {
     return(instruction.Name + " " + operand1.ToCode() + ", " + operand2.ToCode() + ", " + operand3.ToCode());
 }
Example #4
0
 public static string FormatOperation(X64Instruction instruction, X64StorageLocation operand)
 {
     return(instruction.Name + " " + operand.ToCode());
 }