aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/boot.h
blob: 98e964db8a28752cf3db5c908c31e12404c23fcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 *boot_passed;
struct vid_info {
	u32 mode;
	u32 *vbe;
};

#endif