os/drivers/i386/vga.c

14 lines
301 B
C
Raw Normal View History

2019-02-09 14:35:29 -06:00
#include <grub/text_fb_info.h>
#include "../vga.h"
char* screen;
int width;
int height;
vga_colors fg_color=VGA_WHITE;
vga_colors bg_color=VGA_BLACK;
void vga_init(text_fb_info framebuffer_info) {
screen=framebuffer_info.address;
width=framebuffer_info.width;
height=framebuffer_info.height;
}