diff options
author | dzwdz | 2021-08-09 21:21:56 +0200 |
---|---|---|
committer | dzwdz | 2021-08-09 21:21:56 +0200 |
commit | ab1843f5de80752ba40fb1ea5075eb7e3dad8171 (patch) | |
tree | 9c01d71eef5abc6c5d66c1110e8a7c6ccb0c0281 /src/kernel/arch/i386/tty/tty.c | |
parent | 5836c7df10d48b9c3241f2fbdb9ea3a37313a6fd (diff) |
rename `log_` to `tty_`, `tty_` to `vga_`
Diffstat (limited to 'src/kernel/arch/i386/tty/tty.c')
-rw-r--r-- | src/kernel/arch/i386/tty/tty.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/kernel/arch/i386/tty/tty.c b/src/kernel/arch/i386/tty/tty.c new file mode 100644 index 0000000..670dd5b --- /dev/null +++ b/src/kernel/arch/i386/tty/tty.c @@ -0,0 +1,10 @@ +#include <kernel/arch/i386/tty/vga.h> +#include <kernel/arch/log.h> + +void tty_init() { + vga_clear(); +} + +void tty_write(const char *buf, size_t len) { + vga_write(buf, len); +} |