Folder restructuration

This commit is contained in:
2025-12-28 11:39:39 +01:00
parent fabe0b1a10
commit ead0ed6ae1
16 changed files with 18 additions and 16 deletions

10
src/io/serial/serial.h Normal file
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