feat: io: serial & console

This commit is contained in:
Karina
2025-12-21 13:40:52 +04:00
parent bce8adb119
commit 626174d3d5
13 changed files with 313 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef SERIAL_H
#define SERIAL_H
int serial_init();
void serial_writec(char chr);
void serial_write(const char *str);
#endif