initial commit
This commit is contained in:
commit
1e778fc163
12 changed files with 431 additions and 0 deletions
11
include/io.h
Normal file
11
include/io.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#include "stdint.h"
|
||||
|
||||
void uart_init();
|
||||
|
||||
void uart_putchar(char c);
|
||||
void uart_puts(const char* string);
|
||||
|
||||
char uart_getchar();
|
||||
char* uart_gets(char* string);
|
Loading…
Add table
Add a link
Reference in a new issue