Exemplo n.º 1
0
 public ParsedOpcodeEventArgs(AsmOpcode opcode, string AsmCode)
 {
     this.opcode  = opcode;
     this.AsmCode = AsmCode;
 }
Exemplo n.º 2
0
 public ParsedOpcodeEventArgs(AsmOpcode opcode, string AsmCode, int MemAddress)
 {
     this.opcode     = opcode;
     this.AsmCode    = AsmCode;
     this.MemAddress = MemAddress;
 }
Exemplo n.º 3
0
 public CurrentOpcodeEventArgs(AsmOpcode opcode, int CurrentLocation)
 {
     this.opcode          = opcode;
     this.CurrentLocation = CurrentLocation;
 }