初始化

This commit is contained in:
2026-04-09 21:47:13 +08:00
commit cb952965e6
37 changed files with 1304 additions and 0 deletions

12
clks/include/clks/tty.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef CLKS_TTY_H
#define CLKS_TTY_H
#include <clks/types.h>
void clks_tty_init(void);
void clks_tty_write(const char *text);
void clks_tty_write_char(char ch);
void clks_tty_switch(u32 tty_index);
u32 clks_tty_active(void);
#endif