1 #include <std/common.h> 3 #define MULTIBOOT_FLAG_MEM 0x001 4 #define MULTIBOOT_FLAG_DEVICE 0x002 5 #define MULTIBOOT_FLAGS_CMDLINE 0x004 6 #define MULTIBOOT_FLAG_MODS 0x008 7 #define MULTIBOOT_FLAG_AOUT 0x010 8 #define MULTIBOOT_FLAG_ELF 0x020 9 #define MULTIBOOT_FLAG_MMAP 0x040 10 #define MULTIBOOT_FLAG_CONFIG 0x080 11 #define MULTIBOOT_FLAG_LOADER 0x100 12 #define MULTIBOOT_FLAG_APM 0x200 13 #define MULTIBOOT_FLAG_VBE 0x400 29 uint32_t drives_length;
31 uint32_t config_table;
32 uint32_t boot_loader_name;
34 uint32_t vbe_control_info;
37 uint32_t vbe_interface_seg;
38 uint32_t vbe_interface_off;
39 uint32_t vbe_interface_len;
Definition: multiboot.h:15