blob: ca6057318858fbe22b74ec6ced2c421e12fd3c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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_clear(void);
void vga_graphics_return(void);
void vga_graphics_newln(void);
#endif
|