Cosmos/source/Cosmos.Core.Plugs/Assemblers/EnableInterruptsAssembler.cs
Matthijs ter Woord 78771994f8 .
2016-06-16 17:24:46 -04:00

14 lines
338 B
C#

using Cosmos.Assembler;
using Cosmos.IL2CPU.Plugs;
using XSharp.Compiler;
namespace Cosmos.Core.Plugs.Assemblers
{
public class EnableInterruptsAssembler: AssemblerMethod
{
public override void AssembleNew(Assembler.Assembler aAssembler, object aMethodInfo)
{
XS.EnableInterrupts();
}
}
}