From: John Hodge Date: Mon, 29 Mar 2010 02:34:08 +0000 (+0800) Subject: Added mboot2 header X-Git-Tag: rel0.06~262 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=53436af44ded8bc345d4d3d1a9fe25de4d6f23bc;p=tpg%2Facess2.git Added mboot2 header --- diff --git a/Kernel/arch/x86/include/multiboot2.h b/Kernel/arch/x86/include/multiboot2.h new file mode 100644 index 00000000..735109a2 --- /dev/null +++ b/Kernel/arch/x86/include/multiboot2.h @@ -0,0 +1,19 @@ +/* + * Acess 2 + * By John Hodge (thePowersGang) + * + * multiboot2.h + * - Multiboot 2 Header + */ +#ifndef _MULTIBOOT2_H_ +#define _MULTIBOOT2_H_ + +#define MULTIBOOT2_MAGIC 0x36D76289 + +typedef struct sMultiboot2Info +{ + Uint32 TotalSize; + Uint32 Reserved; // SBZ +} tMultiboot2Info; + +#endif