mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
14 lines
No EOL
395 B
C#
14 lines
No EOL
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using CPUx86 = Cosmos.Assembler.x86;
|
|
|
|
namespace Cosmos.Kernel.Plugs.Assemblers {
|
|
public class DisableInterrupts: AssemblerMethod {
|
|
public override void AssembleNew(Cosmos.Assembler.Assembler aAssembler, object aMethodInfo) {
|
|
new CPUx86.ClrInterruptFlag();
|
|
}
|
|
}
|
|
} |