mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
17 lines
402 B
C#
17 lines
402 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 EnableInterrupts : AssemblerMethod
|
|
{
|
|
public override void AssembleNew(Cosmos.Assembler.Assembler aAssembler, object aMethodInfo)
|
|
{
|
|
XS.Sti();
|
|
}
|
|
}
|
|
}
|