Files
Espresso/include/drivers/serio.h

15 lines
203 B
C
Raw Normal View History

2025-10-20 21:57:30 -05:00
#ifndef _SERIAL_IO_H
#define _SERIAL_IO_H
#include <types.h>
int serial_init(void);
void serial_write(char a);
void serial_puts(const char* s);
char serial_read(void);
bool use_serial(void);
#endif