mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
12 lines
274 B
C#
12 lines
274 B
C#
using Cosmos.Core;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Asm
|
|
{
|
|
[Plug(Target = typeof(Multiboot))]
|
|
public class MultibootImpl
|
|
{
|
|
[PlugMethod(Assembler = typeof(MultibootAsm))]
|
|
public static uint GetMBIAddress() => throw null;
|
|
}
|
|
}
|