os/kernel/vga_err.h

21 lines
337 B
C
Raw Normal View History

2020-07-25 16:54:37 -05:00
/**
* \file
*/
#ifndef VGA_ERR_H
#define VGA_ERR_H
2020-07-25 16:54:37 -05:00
/**
* Initilaze the VGA error writing driver
2020-07-25 18:01:05 -05:00
* \param screen Pointer to VGA screen memory
2020-07-25 16:54:37 -05:00
*/
void vga_init(char* screen);
2020-07-25 16:54:37 -05:00
/**
* Write a string starting at the top line of the VGA display
2020-07-25 18:01:05 -05:00
* \param string The string to write
2020-07-25 16:54:37 -05:00
*/
void vga_write_string(const char *string);
#endif