mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 13:32:08 +00:00
12 lines
277 B
C#
12 lines
277 B
C#
using XSharp.Assembler;
|
|
using XSharp.Common;
|
|
|
|
namespace Cosmos.CPU_Asm {
|
|
public class CPUEnableINTsAsm : AssemblerMethod
|
|
{
|
|
public override void AssembleNew(Assembler aAssembler, object aMethodInfo)
|
|
{
|
|
XS.EnableInterrupts();
|
|
}
|
|
}
|
|
}
|