Represents a FPU operand.
Inheritance: MachineOperand
Esempio n. 1
0
		public void X86Orw32_Fpu()
		{
			FpuOperand f = new FpuOperand(3);
			Identifier id = (Identifier) orw.Transform(instr, f, PrimitiveType.Real64,  state);
			Assert.AreEqual(PrimitiveType.Real64, id.DataType);
		}
Esempio n. 2
0
 public void EmitModRM(int reg, FpuOperand op)
 {
     reg <<= 3;
     emitter.EmitByte(0xC0 | reg | op.StNumber);
 }