added missing multiboot #defines
This commit is contained in:
parent
df99b4dfff
commit
421e7ec66e
1 changed files with 4 additions and 3 deletions
|
@ -35,9 +35,11 @@
|
||||||
|
|
||||||
#ifdef CONFIG_MULTIBOOT
|
#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
|
#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
|
#define MULTIBOOT_INFO_MEM_MAP 0x00000040
|
||||||
|
|
||||||
typedef uint16_t multiboot_uint16_t;
|
typedef uint16_t multiboot_uint16_t;
|
||||||
|
@ -114,7 +116,6 @@ struct multiboot_info
|
||||||
multiboot_uint16_t vbe_interface_off;
|
multiboot_uint16_t vbe_interface_off;
|
||||||
multiboot_uint16_t vbe_interface_len;
|
multiboot_uint16_t vbe_interface_len;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct multiboot_info multiboot_info_t;
|
typedef struct multiboot_info multiboot_info_t;
|
||||||
|
|
||||||
struct multiboot_mmap_entry
|
struct multiboot_mmap_entry
|
||||||
|
|
Loading…
Add table
Reference in a new issue