JNLE() public method

JNLE imm8
public JNLE ( Byte target ) : void
target Byte
return void
コード例 #1
0
ファイル: X86.cs プロジェクト: sharpos/SharpOS
	public void JNLE_NEAR_imm ()
	{
		// JNLE 0xdce43a8
		// JNLE (0xdce43a8)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.JNLE (0xdce43a8);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0x8f, 0xa2, 0x43, 0xce, 0xd };
		Assert.IsTrue (CompareData (memoryStream, target), "'JNLE 0xdce43a8' failed.");
	}
コード例 #2
0
ファイル: X86.cs プロジェクト: sharpos/SharpOS
	public void JNLE_imm8 ()
	{
		// JNLE_imm8: JNLE SHORT JNLE_imm8
		// JNLE (0x00)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.JNLE (0x00);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x7f, 0xfe };
		Assert.IsTrue (CompareData (memoryStream, target), "'JNLE_imm8: JNLE SHORT JNLE_imm8' failed.");
	}