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