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

12 lines
273 B
C#

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