First commit
This commit is contained in:
7
include/console.h
Normal file
7
include/console.h
Normal file
@@ -0,0 +1,7 @@
|
||||
#include "types.h"
|
||||
|
||||
void put_char(char c);
|
||||
char get_char();
|
||||
|
||||
void put_string(char* s);
|
||||
|
||||
3
include/random.h
Normal file
3
include/random.h
Normal file
@@ -0,0 +1,3 @@
|
||||
#include "types.h"
|
||||
|
||||
uint8_t random();
|
||||
7
include/types.h
Normal file
7
include/types.h
Normal file
@@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
typedef signed char int8_t;
|
||||
typedef short int int16_t;
|
||||
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short uint16_t;
|
||||
Reference in New Issue
Block a user