CMOVA() public method

CMOVA reg16,rmreg16
public CMOVA ( R16Type target, R16Type source ) : void
target R16Type
source R16Type
return void
Esempio n. 1
0
	public void CMOVA_reg32_rmreg32 ()
	{
		// CMOVA EBP, EAX
		// CMOVA (R32.EBP, R32.EAX)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVA (R32.EBP, R32.EAX);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0x47, 0xe8 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVA EBP, EAX' failed.");
	}
Esempio n. 2
0
	public void CMOVA_reg32_mem32 ()
	{
		// CMOVA EBP, [0x12345678]
		// CMOVA (R32.EBP, new DWordMemory(null, null, null, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVA (R32.EBP, new DWordMemory (null, null, null, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0x47, 0x2d, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVA EBP, [0x12345678]' failed.");
	}
Esempio n. 3
0
	public void CMOVA_reg16_rmreg16 ()
	{
		// CMOVA DI, SP
		// CMOVA (R16.DI, R16.SP)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVA (R16.DI, R16.SP);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf, 0x47, 0xfc };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVA DI, SP' failed.");
	}
Esempio n. 4
0
	public void CMOVA_reg16_mem16 ()
	{
		// CMOVA BP, [EDI*8]
		// CMOVA (R16.BP, new WordMemory(null, null, R32.EDI, 3))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVA (R16.BP, new WordMemory (null, null, R32.EDI, 3));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf, 0x47, 0x2c, 0xfd, 0x0, 0x0, 0x0, 0x0 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVA BP, [EDI*8]' failed.");
	}