Cosmos/source/Cosmos/Cosmos.Kernel.Plugs/Assemblers/GetMBIAddress.cs

18 lines
No EOL
527 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.IL2CPU.Plugs;
using Cosmos.Compiler.Assembler.X86;
using Cosmos.Compiler.Assembler;
namespace Cosmos.Kernel.Plugs.Assemblers
{
public class GetMBIAddress: AssemblerMethod
{
public override void AssembleNew(object aAssembler, object aMethodInfo)
{
new Push { DestinationRef = ElementReference.New("MultiBootInfo_Structure"), DestinationIsIndirect=true };
}
}
}