axle OS
x86_32 UNIX-like hobby OS
vga.h
1 #ifndef VGA_H
2 #define VGA_H
3 
4 #include <gfx/lib/gfx.h>
5 #include <gfx/lib/color.h>
6 
7 #define VRAM_START 0xA0000
8 
9 Screen* switch_to_vga();
10 
11 #endif
Definition: gfx.h:22