mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
13 lines
304 B
C#
13 lines
304 B
C#
using Cosmos.Assembler;
|
|
using XSharp.Common;
|
|
|
|
namespace Cosmos.Core.Plugs_Asm
|
|
{
|
|
public class CPUDisableINTsAsm : AssemblerMethod
|
|
{
|
|
public override void AssembleNew(Cosmos.Assembler.Assembler aAssembler, object aMethodInfo)
|
|
{
|
|
XS.ClearInterruptFlag();
|
|
}
|
|
}
|
|
}
|