added missing multiboot #defines

This commit is contained in:
Steffen Vogel 2013-11-20 11:20:52 +01:00
parent df99b4dfff
commit 421e7ec66e

View file

@ -35,9 +35,11 @@
#ifdef CONFIG_MULTIBOOT
/* are there modules to do something with? */
/// Does the bootloader provide mem_* fields?
#define MULTIBOOT_INFO_MEM 0x00000001
/// Does the bootloader provide a list of modules?
#define MULTIBOOT_INFO_MODS 0x00000008
/* is there a full memory map? */
/// Does the bootloader provide a full memory map?
#define MULTIBOOT_INFO_MEM_MAP 0x00000040
typedef uint16_t multiboot_uint16_t;
@ -114,7 +116,6 @@ struct multiboot_info
multiboot_uint16_t vbe_interface_off;
multiboot_uint16_t vbe_interface_len;
};
typedef struct multiboot_info multiboot_info_t;
struct multiboot_mmap_entry