mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
17 lines
No EOL
629 B
C#
17 lines
No EOL
629 B
C#
using System;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
using CPUx86 = Cosmos.Assembler.x86;
|
|
using Assembler = Cosmos.Assembler;
|
|
|
|
namespace Cosmos.Kernel.Plugs.Assemblers {
|
|
public class ASMEnablePaging: AssemblerMethod {
|
|
|
|
public override void AssembleNew(Cosmos.Assembler.Assembler aAssembler, object aMethodInfo) {
|
|
new CPUx86.Mov { DestinationReg = CPUx86.Registers.EAX, SourceReg = CPUx86.Registers.CR0 };
|
|
new CPUx86.Or { DestinationReg = CPUx86.Registers.EAX, SourceValue = 0x80000000 };
|
|
new CPUx86.Mov { DestinationReg = CPUx86.Registers.CR0, SourceReg = CPUx86.Registers.EAX };
|
|
}
|
|
|
|
}
|
|
} |