aboutsummaryrefslogtreecommitdiff
path: root/kernel/gpu/text_mode/display.h
blob: 9c76499aaf064f86345076dbf7a075ce22451394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void scrn_enable_cursor(unsigned char start_line, unsigned char end_line);
void scrn_clear();
void scrn_print(char *msg);
void scrn_println(char *msg);
void scrn_set_text_colour(int foreground, int background);
int scrn_get_char_attr_byte();
void scrn_set_char_attr_byte(int byte);
void scrn_putchar(unsigned char c);
void scrn_backspace();
void scrn_newline();
void scrn_set_cursor_pos(unsigned int row, unsigned int col);
int scrn_get_cursor_row();
int scrn_get_cursor_col();