diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-08-28 18:02:17 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-08-28 18:02:17 +0100 |
| commit | 326526206eface026e6ec291d75cd037dbec6609 (patch) | |
| tree | 3b7236a4024ba183d9f512b51072343436dbdbfa /kernel/io/vga/text_mode_diplay.h | |
| parent | d5cf6a9696f6f86bec5652f94ba7485aae4ca1bc (diff) | |
| download | tinyOS-326526206eface026e6ec291d75cd037dbec6609.tar.xz tinyOS-326526206eface026e6ec291d75cd037dbec6609.zip | |
Add text colour manipulation
Diffstat (limited to 'kernel/io/vga/text_mode_diplay.h')
| -rw-r--r-- | kernel/io/vga/text_mode_diplay.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/io/vga/text_mode_diplay.h b/kernel/io/vga/text_mode_diplay.h new file mode 100644 index 0000000..269a6ce --- /dev/null +++ b/kernel/io/vga/text_mode_diplay.h @@ -0,0 +1,4 @@ +void clear_screen(); +void print(char *msg); +void print_ln(char *msg); +void set_text_colour(int foreground, int background);
\ No newline at end of file |