mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
13 lines
287 B
C#
13 lines
287 B
C#
using Cosmos.Assembler;
|
|
using XSharp.Common;
|
|
|
|
namespace Cosmos.Core_Asm
|
|
{
|
|
public class CPUInitSSEAsm : AssemblerMethod
|
|
{
|
|
public override void AssembleNew(Cosmos.Assembler.Assembler aAssembler, object aMethodInfo)
|
|
{
|
|
XS.SSE.SSEInit();
|
|
}
|
|
}
|
|
}
|