mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
12 lines
266 B
C#
12 lines
266 B
C#
using XSharp.Assembler;
|
|
using XSharp;
|
|
|
|
namespace Cosmos.CPU_Asm {
|
|
public class CPUInitFloatAsm : AssemblerMethod
|
|
{
|
|
public override void AssembleNew(Assembler aAssembler, object aMethodInfo)
|
|
{
|
|
XS.FPU.FloatInit();
|
|
}
|
|
}
|
|
}
|