Skip to content
Snippets Groups Projects
uart.h 162 B
Newer Older
Tomasz Wlostowski's avatar
Tomasz Wlostowski committed
#ifndef __UART_H
#define __UART_H

Tomasz Wlostowski's avatar
Tomasz Wlostowski committed
int mprintf(char const *format, ...);

void uart_init();
void uart_write_byte(int b);
void uart_write_string(char *s);

Tomasz Wlostowski's avatar
Tomasz Wlostowski committed
#endif