Initial commit of kernel only
[tpg/acess2.git] / Kernel / arch / x86 / include / mp.h
1 /*
2  */
3 #ifndef _MP_H
4 #define _MP_H
5
6 #define MPTABLE_IDENT   ('_'|('M'<<8)|('P'<<16)|('_'<<24))
7
8 typedef struct sMPInfo {
9         Uint    Sig;    // '_MP_'
10         Uint    MPConfig;
11         Uint8   Length;
12         Uint8   Version;
13         Uint8   Checksum;
14         Uint8   Features[5];    // 2-4 are unused
15 } tMPInfo;
16
17 #endif

UCC git Repository :: git.ucc.asn.au