当前位置: 首页>>代码示例>>C#>>正文


C# Assembly.BTR方法代码示例

本文整理汇总了C#中SharpOS.AOT.X86.Assembly.BTR方法的典型用法代码示例。如果您正苦于以下问题:C# Assembly.BTR方法的具体用法?C# Assembly.BTR怎么用?C# Assembly.BTR使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SharpOS.AOT.X86.Assembly的用法示例。


在下文中一共展示了Assembly.BTR方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: BTR_rmreg32_reg32

	public void BTR_rmreg32_reg32 ()
	{
		// BTR EBX, ECX
		// BTR (R32.EBX, R32.ECX)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.BTR (R32.EBX, R32.ECX);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0xb3, 0xcb };
		Assert.IsTrue (CompareData (memoryStream, target), "'BTR EBX, ECX' failed.");
	}
开发者ID:sharpos,项目名称:SharpOS,代码行数:11,代码来源:X86.cs

示例2: BTR_rmreg32_imm8

	public void BTR_rmreg32_imm8 ()
	{
		// BTR EDI, 0xb
		// BTR (R32.EDI, 0xb)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.BTR (R32.EDI, 0xb);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0xba, 0xf7, 0xb };
		Assert.IsTrue (CompareData (memoryStream, target), "'BTR EDI, 0xb' failed.");
	}
开发者ID:sharpos,项目名称:SharpOS,代码行数:11,代码来源:X86.cs

示例3: BTR_rmreg16_reg16

	public void BTR_rmreg16_reg16 ()
	{
		// BTR BP, SI
		// BTR (R16.BP, R16.SI)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.BTR (R16.BP, R16.SI);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf, 0xb3, 0xf5 };
		Assert.IsTrue (CompareData (memoryStream, target), "'BTR BP, SI' failed.");
	}
开发者ID:sharpos,项目名称:SharpOS,代码行数:11,代码来源:X86.cs

示例4: BTR_mem32_imm8

	public void BTR_mem32_imm8 ()
	{
		// BTR DWord [SS:EBX + ECX*1 + 0x12345678], 0x0
		// BTR (new DWordMemory(Seg.SS, R32.EBX, R32.ECX, 0, 0x12345678), 0x0)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.BTR (new DWordMemory (Seg.SS, R32.EBX, R32.ECX, 0, 0x12345678), 0x0);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x36, 0xf, 0xba, 0xb4, 0xb, 0x78, 0x56, 0x34, 0x12, 0x0 };
		Assert.IsTrue (CompareData (memoryStream, target), "'BTR DWord [SS:EBX + ECX*1 + 0x12345678], 0x0' failed.");
	}
开发者ID:sharpos,项目名称:SharpOS,代码行数:11,代码来源:X86.cs

示例5: BTR_mem16_imm8

	public void BTR_mem16_imm8 ()
	{
		// BTR Word [EDI*4 + 0x12345678], 0xf
		// BTR (new WordMemory(null, null, R32.EDI, 2, 0x12345678), 0xf)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.BTR (new WordMemory (null, null, R32.EDI, 2, 0x12345678), 0xf);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf, 0xba, 0x34, 0xbd, 0x78, 0x56, 0x34, 0x12, 0xf };
		Assert.IsTrue (CompareData (memoryStream, target), "'BTR Word [EDI*4 + 0x12345678], 0xf' failed.");
	}
开发者ID:sharpos,项目名称:SharpOS,代码行数:11,代码来源:X86.cs

示例6: BTR_mem32_reg32

	public void BTR_mem32_reg32 ()
	{
		// BTR [EBX + 0x12345678], EDX
		// BTR (new DWordMemory(null, R32.EBX, null, 0, 0x12345678), R32.EDX)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.BTR (new DWordMemory (null, R32.EBX, null, 0, 0x12345678), R32.EDX);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf, 0xb3, 0x93, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'BTR [EBX + 0x12345678], EDX' failed.");
	}
开发者ID:sharpos,项目名称:SharpOS,代码行数:11,代码来源:X86.cs

示例7: BTR_mem16_reg16

	public void BTR_mem16_reg16 ()
	{
		// BTR [SS:EAX + 0x12345678], CX
		// BTR (new WordMemory(Seg.SS, R32.EAX, null, 0, 0x12345678), R16.CX)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.BTR (new WordMemory (Seg.SS, R32.EAX, null, 0, 0x12345678), R16.CX);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x36, 0x66, 0xf, 0xb3, 0x88, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'BTR [SS:EAX + 0x12345678], CX' failed.");
	}
开发者ID:sharpos,项目名称:SharpOS,代码行数:11,代码来源:X86.cs


注:本文中的SharpOS.AOT.X86.Assembly.BTR方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。