示例#1
0
 public Instruction(Instruction source)
 {
     Code           = source.Code;
     Operand        = source.Operand;
     this.registers = new RegisterList(source.Registers);
     SequencePoint  = source.SequencePoint;
 }
示例#2
0
 public Instruction(RCode code, object operand, Register[] registers)
 {
     Code           = code;
     Operand        = operand;
     this.registers = new RegisterList(registers);
 }