Пример #1
0
 OpcodeData getOpcodeData(opcodeType type)
 {
     return opcdData[type];
 }
Пример #2
0
 public OpcodeData(opcodeType type, int numInVariables, int numOutVariables, OpcodeExecuter executer)
 {
     this.type = type;
     this.numInVariables = numInVariables;
     this.numOutVariables = numOutVariables;
     this.executer = executer;
 }