mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
12 lines
292 B
C#
12 lines
292 B
C#
using XSharp.Compiler;
|
|
|
|
namespace Cosmos.IL2CPU.Plugs.Assemblers.CPU
|
|
{
|
|
public class CPUEnableINTsAsm : AssemblerMethod
|
|
{
|
|
public override void AssembleNew(Cosmos.Assembler.Assembler aAssembler, object aMethodInfo)
|
|
{
|
|
XS.EnableInterrupts();
|
|
}
|
|
}
|
|
}
|