mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
27 lines
535 B
C#
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
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|