10 lines
218 B
C
10 lines
218 B
C
#ifndef KARLOS_CONSOLE_H
|
|
#define KARLOS_CONSOLE_H
|
|
|
|
void console_init(void);
|
|
void console_draw(unsigned int row, unsigned int col);
|
|
void console_scroll(void);
|
|
void console_clear(void);
|
|
void visual_putc(char c);
|
|
|
|
#endif
|