os/drivers/screen.h

10 lines
155 B
C
Raw Normal View History

2019-02-09 12:52:45 -06:00
#ifndef SCREEN_H
#define SCREEN_H
void screen_init();
void screen_write_string(const char *string);
void screen_clear();
void screen_backspace();
#endif