Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU_Asm/CPU/CPUEnableINTsAsm.cs

12 lines
294 B
C#

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