Add: init serial + getting text out of it

This commit is contained in:
2025-12-21 20:33:48 +01:00
parent e6f4200ae9
commit 62302e03d5
6 changed files with 83 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef SERIAL_H
#define SERIAL_H
void outb(int port, unsigned char data);
unsigned char inb(int port);
int serial_init();
void serial_kputs(const char* str);
#endif