예제 #1
0
 public Instruction(string name, uint opcode, uint mask, AddressBits addressBits, InstructionType type)
 {
     this.Name        = name;
     this.Opcode      = opcode;
     this.Mask        = mask;
     this.AddressBits = addressBits;
     this.Type        = type;
 }
예제 #2
0
 public Instruction( string name, uint opcode, uint mask, AddressBits addressBits, InstructionType type )
 {
     this.Name = name;
     this.Opcode = opcode;
     this.Mask = mask;
     this.AddressBits = addressBits;
     this.Type = type;
 }