Cosmos/source/Kernel/00-CPU/Cosmos.CPU_Asm/CPU/CPUDisableINTsAsm.cs
2017-07-29 14:01:28 -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();
}
}
}