os/kernel/vga_err.h
2020-07-25 18:01:05 -05:00

21 lines
337 B
C

/**
* \file
*/
#ifndef VGA_ERR_H
#define VGA_ERR_H
/**
* Initilaze the VGA error writing driver
* \param screen Pointer to VGA screen memory
*/
void vga_init(char* screen);
/**
* Write a string starting at the top line of the VGA display
* \param string The string to write
*/
void vga_write_string(const char *string);
#endif