aboutsummaryrefslogtreecommitdiff
path: root/io.h
diff options
context:
space:
mode:
authorvetch <vetch97@gmail.com>2020-01-04 19:37:32 +0100
committervetch <vetch97@gmail.com>2020-01-04 19:37:32 +0100
commit615e3302c9dd358bb64cd56d1f3814ad8d5df84d (patch)
tree07b0469807eb3bff7ff7d3f3576858642bc66675 /io.h
parent885a097da42317f48cead2d91c0e0240066943a8 (diff)
downloadrpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.tar.gz
rpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.zip
rearranged files, updated makefile
Diffstat (limited to 'io.h')
-rw-r--r--io.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/io.h b/io.h
deleted file mode 100644
index dcad76e..0000000
--- a/io.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef IO_H
-#define IO_H
-
-#include <stdint.h>
-
-// putchar() and getchar() are not part of io.c, but it's useful to
-// have those symbols declared here
-void putchar(char c);
-
-char getchar(void);
-
-void puts(char string[]);
-
-void prints(char string[]);
-
-void error(char string[]);
-
-void printdec(uint32_t number);
-
-void printhex(uint32_t number);
-
-void printbin(uint32_t number);
-
-void printdect(uint32_t number);
-
-void printhext(uint32_t number);
-
-#endif // IO_H