#ifndef CONIO_H #define CONIO_H #include #include #define redbus 0x0300 int conid = 0x01; Console* con = (Console*)redbus; char * strinv(char str[]); void conprint(char * str, int x, int y); void set_conid(int id); int get_conid(); void set_cursor_pos(int x, int y); void set_cursor_mode(int mode); int get_cursor_mode(); void conclear(); void blit(char command, char x, char y, char xo, char yo, char w, char h); char * read_keyboard(); #endif