summaryrefslogtreecommitdiff
path: root/src/port.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/port.c')
-rw-r--r--src/port.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/port.c b/src/port.c
new file mode 100644
index 0000000..1a55669
--- /dev/null
+++ b/src/port.c
@@ -0,0 +1,11 @@
+#include "port.h"
+
+void port8_init( port8_t *port, uint16_t number )
+{
+ port->number = number;
+}
+
+uint8_t port8_read( port8_t *port )
+{
+ return 0;
+}