X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Kernel%2Finclude%2Fmboot.h;h=ff59d5443c8b901ecd46141355031c52908facae;hb=156885e938b60fee9d061d989ae7711c9aeea493;hp=764120f6cc8dbeab16cbeca9049152d660502e91;hpb=8bc40333b1401d7616b225945fee53d972c2f418;p=tpg%2Facess2.git diff --git a/Kernel/include/mboot.h b/Kernel/include/mboot.h index 764120f6..ff59d544 100644 --- a/Kernel/include/mboot.h +++ b/Kernel/include/mboot.h @@ -14,6 +14,9 @@ typedef struct { Uint32 CommandLine; Uint32 ModuleCount; Uint32 Modules; + Uint32 SymbolInfo[4]; // #32 UNUSED + Uint32 MMapLength; + Uint32 MMapAddr; // #40 } tMBoot_Info; typedef struct { @@ -23,4 +26,11 @@ typedef struct { Uint32 Resvd; } tMBoot_Module; +typedef struct { + Uint32 Size; // (May be at offset -4) + Uint64 Base; + Uint64 Length; + Uint32 Type; //1:RAM,Else Reserved +} __attribute__ ((packed)) tMBoot_MMapEnt; + #endif