本文整理匯總了C#中SharpOS.AOT.X86.Assembly.CMOVNBE方法的典型用法代碼示例。如果您正苦於以下問題:C# Assembly.CMOVNBE方法的具體用法?C# Assembly.CMOVNBE怎麽用?C# Assembly.CMOVNBE使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SharpOS.AOT.X86.Assembly
的用法示例。
在下文中一共展示了Assembly.CMOVNBE方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CMOVNBE_reg32_rmreg32
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.");
}
示例2: CMOVNBE_reg32_mem32
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.");
}
示例3: CMOVNBE_reg16_rmreg16
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.");
}
示例4: CMOVNBE_reg16_mem16
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.");
}