os/drivers/screen.h

10 lines
155 B
C

#ifndef SCREEN_H
#define SCREEN_H
void screen_init();
void screen_write_string(const char *string);
void screen_clear();
void screen_backspace();
#endif