mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
30 lines
772 B
C#
30 lines
772 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Sys.Plugs
|
|
{
|
|
[Plug(Target=typeof(Sys.BootInfo))]
|
|
public static class BootInfo
|
|
{
|
|
[PlugMethod(Assembler=typeof(Assemblers.GetVbeControlInfoAssembler))]
|
|
public static uint GetVbeControlInfoAddr()
|
|
{
|
|
return UInt32.MaxValue;
|
|
}
|
|
|
|
[PlugMethod(Assembler = typeof(Assemblers.GetVbeModeInfoAssembler))]
|
|
public static uint GetVbeModeInfoAddr()
|
|
{
|
|
return UInt32.MaxValue;
|
|
}
|
|
|
|
[PlugMethod(Assembler = typeof(Assemblers.GetVbeModeAssembler))]
|
|
public static ushort GetVbeMode()
|
|
{
|
|
return ushort.MaxValue;
|
|
}
|
|
}
|
|
}
|