mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 05:11:08 +00:00
12 lines
287 B
C#
12 lines
287 B
C#
using XSharp.Compiler;
|
|
|
|
namespace Cosmos.IL2CPU.Plugs.Assemblers.CPU
|
|
{
|
|
public class CPUInitSSEAsm : AssemblerMethod
|
|
{
|
|
public override void AssembleNew(Cosmos.Assembler.Assembler aAssembler, object aMethodInfo)
|
|
{
|
|
XS.SSE.SSEInit();
|
|
}
|
|
}
|
|
}
|