From 53436af44ded8bc345d4d3d1a9fe25de4d6f23bc Mon Sep 17 00:00:00 2001 From: John Hodge Date: Mon, 29 Mar 2010 10:34:08 +0800 Subject: [PATCH] Added mboot2 header --- Kernel/arch/x86/include/multiboot2.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Kernel/arch/x86/include/multiboot2.h 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 -- 2.20.1