Cosmos/source/XSharp.Compiler/XS.SSE3.cs
Matthijs ter Woord 5979ad032e .
2016-06-15 15:04:50 -04:00

22 lines
490 B
C#

using Cosmos.Assembler.x86.SSE;
using static XSharp.Compiler.XSRegisters;
namespace XSharp.Compiler
{
partial class XS
{
public static class SSE3
{
public static void MoveDoubleAndDuplicate(RegisterXMM destination, Register32 source, bool sourceIsIndirect = false)
{
new MoveDoubleAndDuplicate()
{
DestinationReg = destination,
SourceReg = source,
SourceIsIndirect = sourceIsIndirect
};
}
}
}
}