initial commit

This commit is contained in:
Lauchmelder 2022-01-20 12:34:33 +01:00
commit 1e778fc163
12 changed files with 431 additions and 0 deletions

11
include/io.h Normal file
View 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);