CMOVNBE() public method

CMOVNBE reg16,rmreg16
public CMOVNBE ( R16Type target, R16Type source ) : void
target R16Type
source R16Type
return void
Example #1
0
	public void CMOVNBE_reg32_rmreg32 ()
	{
		// CMOVNBE EAX, ESP
		// CMOVNBE (R32.EAX, R32.ESP)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNBE (R32.EAX, R32.ESP);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0x47, 0xc4 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNBE EAX, ESP' failed.");
	}
Example #2
0
	public void CMOVNBE_reg32_mem32 ()
	{
		// CMOVNBE ESP, [SS:0x12345678]
		// CMOVNBE (R32.ESP, new DWordMemory(Seg.SS, null, null, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNBE (R32.ESP, new DWordMemory (Seg.SS, null, null, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x36, 0xf, 0x47, 0x25, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNBE ESP, [SS:0x12345678]' failed.");
	}
Example #3
0
	public void CMOVNBE_reg16_rmreg16 ()
	{
		// CMOVNBE BP, SI
		// CMOVNBE (R16.BP, R16.SI)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNBE (R16.BP, R16.SI);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf, 0x47, 0xee };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNBE BP, SI' failed.");
	}
Example #4
0
	public void CMOVNBE_reg16_mem16 ()
	{
		// CMOVNBE DI, [GS:0x12345678]
		// CMOVNBE (R16.DI, new WordMemory(Seg.GS, null, null, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.CMOVNBE (R16.DI, new WordMemory (Seg.GS, null, null, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x65, 0x66, 0xf, 0x47, 0x3d, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'CMOVNBE DI, [GS:0x12345678]' failed.");
	}