Cosmos/source/Cosmos.Core.Plugs.Asm/CPU/CPUEnableINTsAsm.cs
2017-01-31 11:22:59 -06:00

13 lines
303 B
C#

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