blob: 1a41c3292df08c09dd13bb77c69d0030b7bf7fed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// 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;
};
|