Cosmos/source/Kernel-X86/00-CPU/Cosmos.CPU/Memory/Old/GlobalInformationTable.cs
2017-07-30 13:41:12 -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;
}
}