axle OS
x86_32 UNIX-like hobby OS
serial.h
1 #ifndef SERIAL_H
2 #define SERIAL_H
3 
4 #include <stdint.h>
5 #include <stdbool.h>
6 #include <std/std.h>
7 
8 void serial_init();
9 
10 void serial_putchar(char c);
11 void serial_writestring(char* str);
12 
13 #endif