本文整理汇总了C#中SharpOS.AOT.X86.Assembly.BSR方法的典型用法代码示例。如果您正苦于以下问题:C# Assembly.BSR方法的具体用法?C# Assembly.BSR怎么用?C# Assembly.BSR使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SharpOS.AOT.X86.Assembly
的用法示例。
在下文中一共展示了Assembly.BSR方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BSR_reg32_rmreg32
public void BSR_reg32_rmreg32 ()
{
// BSR EDX, EDI
// BSR (R32.EDX, R32.EDI)
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.BSR (R32.EDX, R32.EDI);
asm.Encode (memoryStream);
byte [] target = new byte [] { 0xf, 0xbd, 0xd7 };
Assert.IsTrue (CompareData (memoryStream, target), "'BSR EDX, EDI' failed.");
}
示例2: BSR_reg32_mem32
public void BSR_reg32_mem32 ()
{
// BSR ESI, [EBX*4]
// BSR (R32.ESI, new DWordMemory(null, null, R32.EBX, 2))
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.BSR (R32.ESI, new DWordMemory (null, null, R32.EBX, 2));
asm.Encode (memoryStream);
byte [] target = new byte [] { 0xf, 0xbd, 0x34, 0x9d, 0x0, 0x0, 0x0, 0x0 };
Assert.IsTrue (CompareData (memoryStream, target), "'BSR ESI, [EBX*4]' failed.");
}
示例3: BSR_reg16_rmreg16
public void BSR_reg16_rmreg16 ()
{
// BSR SI, AX
// BSR (R16.SI, R16.AX)
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.BSR (R16.SI, R16.AX);
asm.Encode (memoryStream);
byte [] target = new byte [] { 0x66, 0xf, 0xbd, 0xf0 };
Assert.IsTrue (CompareData (memoryStream, target), "'BSR SI, AX' failed.");
}
示例4: BSR_reg16_mem16
public void BSR_reg16_mem16 ()
{
// BSR DX, [FS:ECX + 0x12345678]
// BSR (R16.DX, new WordMemory(Seg.FS, R32.ECX, null, 0, 0x12345678))
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.BSR (R16.DX, new WordMemory (Seg.FS, R32.ECX, null, 0, 0x12345678));
asm.Encode (memoryStream);
byte [] target = new byte [] { 0x64, 0x66, 0xf, 0xbd, 0x91, 0x78, 0x56, 0x34, 0x12 };
Assert.IsTrue (CompareData (memoryStream, target), "'BSR DX, [FS:ECX + 0x12345678]' failed.");
}