本文整理匯總了C#中SharpOS.AOT.X86.Assembly.FSTP方法的典型用法代碼示例。如果您正苦於以下問題:C# Assembly.FSTP方法的具體用法?C# Assembly.FSTP怎麽用?C# Assembly.FSTP使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SharpOS.AOT.X86.Assembly
的用法示例。
在下文中一共展示了Assembly.FSTP方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: FSTP_fpureg
public void FSTP_fpureg ()
{
// FSTP ST0
// FSTP (FP.ST0)
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.FSTP (FP.ST0);
asm.Encode (memoryStream);
byte [] target = new byte [] { 0xdd, 0xd8 };
Assert.IsTrue (CompareData (memoryStream, target), "'FSTP ST0' failed.");
}
示例2: FSTP_mem64
public void FSTP_mem64 ()
{
// FSTP QWord [ES:ESP + EDX*2]
// FSTP (new QWordMemory(Seg.ES, R32.ESP, R32.EDX, 1))
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.FSTP (new QWordMemory (Seg.ES, R32.ESP, R32.EDX, 1));
asm.Encode (memoryStream);
byte [] target = new byte [] { 0x26, 0xdd, 0x1c, 0x54 };
Assert.IsTrue (CompareData (memoryStream, target), "'FSTP QWord [ES:ESP + EDX*2]' failed.");
}
示例3: FSTP_mem80
public void FSTP_mem80 ()
{
// FSTP TWord [EBX + 0x12345678]
// FSTP (new TWordMemory(null, R32.EBX, null, 0, 0x12345678))
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.FSTP (new TWordMemory (null, R32.EBX, null, 0, 0x12345678));
asm.Encode (memoryStream);
byte [] target = new byte [] { 0xdb, 0xbb, 0x78, 0x56, 0x34, 0x12 };
Assert.IsTrue (CompareData (memoryStream, target), "'FSTP TWord [EBX + 0x12345678]' failed.");
}
示例4: FSTP_mem32
public void FSTP_mem32 ()
{
// FSTP DWord [DS:ECX + 0x12345678]
// FSTP (new DWordMemory(Seg.DS, R32.ECX, null, 0, 0x12345678))
MemoryStream memoryStream = new MemoryStream ();
Assembly asm = new Assembly ();
asm.FSTP (new DWordMemory (Seg.DS, R32.ECX, null, 0, 0x12345678));
asm.Encode (memoryStream);
byte [] target = new byte [] { 0x3e, 0xd9, 0x99, 0x78, 0x56, 0x34, 0x12 };
Assert.IsTrue (CompareData (memoryStream, target), "'FSTP DWord [DS:ECX + 0x12345678]' failed.");
}