mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
21 lines
470 B
C#
21 lines
470 B
C#
using Cosmos.Assembler.x86.SSE;
|
|
|
|
namespace XSharp.Common
|
|
{
|
|
partial class XS
|
|
{
|
|
public static class SSE3
|
|
{
|
|
public static void MoveDoubleAndDuplicate(XSRegisters.RegisterXMM destination, XSRegisters.Register32 source, bool sourceIsIndirect = false)
|
|
{
|
|
new MoveDoubleAndDuplicate()
|
|
{
|
|
DestinationReg = destination,
|
|
SourceReg = source,
|
|
SourceIsIndirect = sourceIsIndirect
|
|
};
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|