mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-05-15 17:11:26 -07:00
11 lines
158 B
C
11 lines
158 B
C
#ifndef SERIAL_H
|
|
#define SERIAL_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void serial_init(void);
|
|
void serial_write(char c);
|
|
void serial_write_string(const char *str);
|
|
|
|
#endif
|