summaryrefslogtreecommitdiff
path: root/simulator.c
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-12-28 14:09:34 +1300
committerDavid Phillips <david@sighup.nz>2017-12-28 14:09:34 +1300
commite3ee67bfda0e8f4aa91992a196adb283f812475e (patch)
tree9c1f5629c77b7fd5535920d71adc033599d69e57 /simulator.c
parente1a691b2b04b383f052d16931f5c34d6bc9d9e22 (diff)
downloadhence-e3ee67bfda0e8f4aa91992a196adb283f812475e.tar.xz
Strip out wire+node concepts, rely only on gates
Diffstat (limited to 'simulator.c')
-rw-r--r--simulator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/simulator.c b/simulator.c
index 389adc3..b8da648 100644
--- a/simulator.c
+++ b/simulator.c
@@ -1,8 +1,8 @@
-#include "wire.h"
+#include "gate.h"
#include "logic.h"
int main(int argc, char **argv) {
logic_test();
- wire_init();
+ gate_init();
return 0;
}