summaryrefslogtreecommitdiff
path: root/src/output/vga_character.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/output/vga_character.h')
-rw-r--r--src/output/vga_character.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/output/vga_character.h b/src/output/vga_character.h
new file mode 100644
index 0000000..0d067f3
--- /dev/null
+++ b/src/output/vga_character.h
@@ -0,0 +1,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