aboutsummaryrefslogtreecommitdiff
path: root/src/inc/boot.h
blob: 30ddfb7545744ec1c528abe78a3f969985311557 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// MIT License, Copyright (c) 2020 Marvin Borner
// This file specifies the structs passed by the bootloader

#include <def.h>
#include <vesa.h>

struct vid_info {
	u32 mode;
	struct vbe *info;
};

struct mem_info {
	u64 base;
	u64 len;
	u64 type;
};