summaryrefslogtreecommitdiff
path: root/wire.h
diff options
context:
space:
mode:
Diffstat (limited to 'wire.h')
-rw-r--r--wire.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/wire.h b/wire.h
deleted file mode 100644
index 74ff29b..0000000
--- a/wire.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef WIRE_H
-#define WIRE_H
-
-#include <stddef.h>
-
-#include "logic.h"
-
-enum NODE_TYPE {
- NODE_OUTPUT,
- NODE_INPUT
-};
-
-struct node {
- enum NODE_TYPE type;
- enum BINARY value;
-};
-
-struct wire {
- struct node *a;
- struct node *b;
-};
-
-int wire_add(size_t aoffs, size_t boffs);
-int tick(void);
-void wire_init(void);
-
-#endif