Ejemplo n.º 1
0
 public byte[] Implement(IRLoadImmediate ir)
 {
     return(BitConverter.GetBytes(
                (long)((long)(count++) << 32 | (uint)ir.Address.Value)
                ));
 }
Ejemplo n.º 2
0
 public byte[] Implement(IRLoadImmediate ir)
 {
     return(Encode(OpCode.LOADI, GetRegisterIndex(ir.To), 0, 0, ir.OperandSize, true, ir.Address.Value));
 }