Cosmos/source/Kernel-X86/00-CPU/Cosmos.CPU_Asm/CPU/CPUDisableINTsAsm.cs
2017-07-30 13:31:32 -04:00

12 lines
297 B
C#

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