CMOVNA() public method

CMOVNA reg16,rmreg16
public CMOVNA ( R16Type target, R16Type source ) : void
target R16Type
source R16Type
return void
Esempio n. 1
0
	public void CMOVNA_reg32_rmreg32 ()
	{
		// CMOVNA EAX, ESI
		// CMOVNA (R32.EAX, R32.ESI)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNA (R32.EAX, R32.ESI);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0x46, 0xc6 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNA EAX, ESI' failed.");
	}
Esempio n. 2
0
	public void CMOVNA_reg32_mem32 ()
	{
		// CMOVNA EBX, [CS:EBP + EDX*1 + 0x12345678]
		// CMOVNA (R32.EBX, new DWordMemory(Seg.CS, R32.EBP, R32.EDX, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNA (R32.EBX, new DWordMemory (Seg.CS, R32.EBP, R32.EDX, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x2e, 0xf, 0x46, 0x9c, 0x15, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNA EBX, [CS:EBP + EDX*1 + 0x12345678]' failed.");
	}
Esempio n. 3
0
	public void CMOVNA_reg16_rmreg16 ()
	{
		// CMOVNA CX, BX
		// CMOVNA (R16.CX, R16.BX)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNA (R16.CX, R16.BX);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf, 0x46, 0xcb };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNA CX, BX' failed.");
	}
Esempio n. 4
0
	public void CMOVNA_reg16_mem16 ()
	{
		// CMOVNA CX, [EDX*8 + 0x12345678]
		// CMOVNA (R16.CX, new WordMemory(null, null, R32.EDX, 3, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNA (R16.CX, new WordMemory (null, null, R32.EDX, 3, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf, 0x46, 0xc, 0xd5, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNA CX, [EDX*8 + 0x12345678]' failed.");
	}