2020-07-25 16:54:37 -05:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*/
|
|
|
|
|
2019-05-22 14:18:29 -05:00
|
|
|
#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
|
|
|
*/
|
2019-05-22 14:18:29 -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
|
|
|
*/
|
2019-05-22 14:18:29 -05:00
|
|
|
void vga_write_string(const char *string);
|
|
|
|
|
|
|
|
#endif
|