#ifndef VESA_H #define VESA_H #include extern uint16_t screen_width; extern uint16_t screen_height; extern uint8_t bpp; typedef uint32_t color; void put_pixel(uint16_t x, uint16_t y, color c); void screen_fill(color c); void init_vesa(); #endif