Cosmos/source/XSharp.Compiler/XS.FPU.cs
Matthijs ter Woord 336020b418 .
2016-06-14 20:36:14 -04:00

27 lines
535 B
C#

using Cosmos.Assembler.x86.x87;
using static XSharp.Compiler.XSRegisters;
namespace XSharp.Compiler
{
public partial class XS
{
public static class FPU
{
public static void FloatCompareAndSet(RegisterFPU register)
{
new FloatCompareAndSet
{
DestinationReg = register.RegEnum
};
}
public static void FloatStoreAndPop(RegisterFPU register)
{
new FloatStoreAndPop
{
DestinationReg = register.RegEnum
};
}
}
}
}