diff options
Diffstat (limited to 'kernel/inc/boot.h')
-rw-r--r-- | kernel/inc/boot.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/kernel/inc/boot.h b/kernel/inc/boot.h deleted file mode 100644 index 48ab440..0000000 --- a/kernel/inc/boot.h +++ /dev/null @@ -1,45 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner -// This file specifies the structs passed by the bootloader - -#ifndef BOOT_H -#define BOOT_H - -#include <def.h> - -struct vid_info { - u32 mode; - u32 *vbe; -}; - -enum mmap_type { - MEMORY_AVAILABLE = 1, - MEMORY_RESERVED, - MEMORY_ACPI, - MEMORY_NVS, - MEMORY_DEFECT, - MEMORY_DISABLED -}; - -struct mmap_boot { - u32 lbase; - u32 hbase; - u32 lsize; - u32 hsize; - u32 type; - u32 acpi; -}; - -struct mem_info { - struct mmap_boot *start; - u32 *end; - u32 size; -}; - -struct boot_info { - struct vid_info *vid; - struct mem_info *mem; - u32 tss; - u32 drive; -}; - -#endif |