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


C# Assembly.DIV方法代碼示例

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


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

示例1: DIV_rmreg32

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

示例2: DIV_rmreg16

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

示例3: DIV_rmreg8

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

示例4: DIV_mem32

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

示例5: DIV_mem16

	public void DIV_mem16 ()
	{
		// DIV Word [0x12345678]
		// DIV (new WordMemory(null, null, null, 0, 0x12345678))
		MemoryStream memoryStream = new MemoryStream ();
		Assembly asm = new Assembly ();
		asm.DIV (new WordMemory (null, null, null, 0, 0x12345678));
		asm.Encode (memoryStream);
		byte [] target = new byte [] { 0x66, 0xf7, 0x35, 0x78, 0x56, 0x34, 0x12 };
		Assert.IsTrue (CompareData (memoryStream, target), "'DIV Word [0x12345678]' failed.");
	}
開發者ID:sharpos,項目名稱:SharpOS,代碼行數:11,代碼來源:X86.cs

示例6: DIV_mem8

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


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