aboutsummaryrefslogtreecommitdiff
path: root/kernel/io/vga/text_mode_display.h
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2019-05-25 23:31:57 +0100
committerJames Barnett <noreply@jamesbarnett.xyz>2019-05-25 23:31:57 +0100
commitef0c2b2bfe2de7721674521f11c583f943f77461 (patch)
treedadc8e45ce94d4aab1bfcbd277993132ffd64433 /kernel/io/vga/text_mode_display.h
parent506f1691f1ca7b562d82ab6f2280b87d0e4af84c (diff)
downloadtinyOS-ef0c2b2bfe2de7721674521f11c583f943f77461.tar.xz
tinyOS-ef0c2b2bfe2de7721674521f11c583f943f77461.zip
Handle backspace and newline scancode
Diffstat (limited to 'kernel/io/vga/text_mode_display.h')
-rw-r--r--kernel/io/vga/text_mode_display.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/io/vga/text_mode_display.h b/kernel/io/vga/text_mode_display.h
index 48bae85..6c46185 100644
--- a/kernel/io/vga/text_mode_display.h
+++ b/kernel/io/vga/text_mode_display.h
@@ -2,4 +2,6 @@ void vga_clear_screen();
void vga_print(char *msg);
void vga_print_ln(char *msg);
void vga_set_text_colour(int foreground, int background);
-void vga_print_raw(unsigned char byte); \ No newline at end of file
+void vga_print_raw(unsigned char byte);
+void vga_backspace();
+void vga_newline(); \ No newline at end of file