當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。