Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUEnableINTsAsm.cs
2017-08-10 21:57:29 -04:00

12 lines
270 B
C#

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