Working TTY
This commit is contained in:
parent
094f93bcd6
commit
832aa58bb7
3 changed files with 127 additions and 0 deletions
12
include/kernel/tty.h
Executable file
12
include/kernel/tty.h
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue