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