blob: 48ab44025e5eb13918362656d842f6bd0c0155fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// 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
|