blob: 0d067f31eb15201fa62294e14e7c4522e6ce20a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef vga_character
#define vga_character
void vga_graphics_write_at_offset(char, short);
void vga_graphics_write(char);
void vga_graphics_write_with_attr(char, char);
void vga_graphics_write_str(char*);
void vga_graphics_byte_hex(char);
//void vga_graphics_short_hex(short);
//void vga_graphics_int_hex(int);
//void vga_graphics_long_hex(long);
void vga_graphics_clear(void);
#endif
|