Exemplo n.º 1
0
 public void Visit(IRUnsigned16Add instruction)
 {
 }
Exemplo n.º 2
0
 private IIRUnit ParseUnsigned16Add(string[] tokens, ref int instructionPointer)
 {
     var value = (ushort)ParseIntegerLiteral(tokens[1]);
     var result = new IRUnsigned16Add(instructionPointer, value);
     instructionPointer += 2;
     return result;
 }