JNBE() public method

JNBE imm8
public JNBE ( Byte target ) : void
target Byte
return void
Esempio n. 1
0
	public void JNBE_NEAR_imm ()
	{
		// JNBE 0x97bd1a2
		// JNBE (0x97bd1a2)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.JNBE (0x97bd1a2);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0x87, 0x9c, 0xd1, 0x7b, 0x9 };
		Assert.IsTrue (CompareData (memoryStream, target), "'JNBE 0x97bd1a2' failed.");
	}
Esempio n. 2
0
	public void JNBE_imm8 ()
	{
		// JNBE_imm8: JNBE SHORT JNBE_imm8
		// JNBE (0x00)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.JNBE (0x00);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x77, 0xfe };
		Assert.IsTrue (CompareData (memoryStream, target), "'JNBE_imm8: JNBE SHORT JNBE_imm8' failed.");
	}