aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/boot.h
blob: 6bacc31c8f57b7caa79df4ffd5c037361831819b (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>

extern struct vid_info *boot_passed;
struct vid_info {
	u32 mode;
	u32 *vbe;
};

#endif