This commit is contained in:
2025-08-05 22:49:34 +02:00
parent f8399152d4
commit f8f00cc608
12 changed files with 1838 additions and 25 deletions

9
kernel/serial.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef SERIAL_H_
#define SERIAL_H_
#include <types.h>
void serial_outb(uint16 port, uint8 value);
uint8 serial_inb(uint16 port);
#endif // SERIAL_H_