Cosmos/source/Kernel/Cosmos.CPU/Memory/Old/GlobalInformationTable.cs
2017-07-29 13:40:27 -04:00

12 lines
316 B
C#

using System;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
namespace Cosmos.CPU.Memory.Old {
[StructLayout(LayoutKind.Explicit)]
public unsafe struct GlobalInformationTable {
[FieldOffset(0)]
public DataLookupTable* FirstDataLookupTable;
}
}