Working TTY

This commit is contained in:
Gitea 2020-12-01 21:00:28 -06:00
parent 094f93bcd6
commit 832aa58bb7
3 changed files with 127 additions and 0 deletions

12
include/kernel/tty.h Executable file
View file

@ -0,0 +1,12 @@
#ifndef _KERN_TTY_H
#define _KERN_TTY_H
#include <stddef.h>
void term_init(void);
void term_scroll(void);
void term_putc(char c);
void term_write(const char* str, size_t size);
void term_writestr(const char* str);
#endif