當前位置: 首頁>>代碼示例>>C#>>正文


C# Assembly.IDIV方法代碼示例

本文整理匯總了C#中SharpOS.AOT.X86.Assembly.IDIV方法的典型用法代碼示例。如果您正苦於以下問題:C# Assembly.IDIV方法的具體用法?C# Assembly.IDIV怎麽用?C# Assembly.IDIV使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SharpOS.AOT.X86.Assembly的用法示例。


在下文中一共展示了Assembly.IDIV方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: IDIV_rmreg32

	public void IDIV_rmreg32 ()
	{
		// IDIV ESP
		// IDIV (R32.ESP)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.IDIV (R32.ESP);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf7, 0xfc };
		Assert.IsTrue (CompareData (memoryStream, target), "'IDIV ESP' failed.");
	}
開發者ID:sharpos,項目名稱:SharpOS,代碼行數:11,代碼來源:X86.cs

示例2: IDIV_rmreg16

	public void IDIV_rmreg16 ()
	{
		// IDIV SI
		// IDIV (R16.SI)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.IDIV (R16.SI);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf7, 0xfe };
		Assert.IsTrue (CompareData (memoryStream, target), "'IDIV SI' failed.");
	}
開發者ID:sharpos,項目名稱:SharpOS,代碼行數:11,代碼來源:X86.cs

示例3: IDIV_mem32

	public void IDIV_mem32 ()
	{
		// IDIV DWord [GS:0x12345678]
		// IDIV (new DWordMemory(Seg.GS, null, null, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.IDIV (new DWordMemory (Seg.GS, null, null, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x65, 0xf7, 0x3d, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'IDIV DWord [GS:0x12345678]' failed.");
	}
開發者ID:sharpos,項目名稱:SharpOS,代碼行數:11,代碼來源:X86.cs

示例4: IDIV_rmreg8

	public void IDIV_rmreg8 ()
	{
		// IDIV BL
		// IDIV (R8.BL)
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.IDIV (R8.BL);
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0xf6, 0xfb };
		Assert.IsTrue (CompareData (memoryStream, target), "'IDIV BL' failed.");
	}
開發者ID:sharpos,項目名稱:SharpOS,代碼行數:11,代碼來源:X86.cs

示例5: IDIV_mem8

	public void IDIV_mem8 ()
	{
		// IDIV Byte [CS:0x12345678]
		// IDIV (new ByteMemory(Seg.CS, null, null, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.IDIV (new ByteMemory (Seg.CS, null, null, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x2e, 0xf6, 0x3d, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'IDIV Byte [CS:0x12345678]' failed.");
	}
開發者ID:sharpos,項目名稱:SharpOS,代碼行數:11,代碼來源:X86.cs


注:本文中的SharpOS.AOT.X86.Assembly.IDIV方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。