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; };