mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
18 lines
No EOL
495 B
C#
18 lines
No EOL
495 B
C#
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)
|
|
{
|
|
XS.Push(Cosmos.Assembler.ElementReference.New("MultiBootInfo_Structure"), isIndirect: true);
|
|
}
|
|
}
|
|
} |