summaryrefslogtreecommitdiff
path: root/projects/01/Mux.cmp
diff options
context:
space:
mode:
Diffstat (limited to 'projects/01/Mux.cmp')
-rw-r--r--projects/01/Mux.cmp9
1 files changed, 9 insertions, 0 deletions
diff --git a/projects/01/Mux.cmp b/projects/01/Mux.cmp
new file mode 100644
index 0000000..7a5cc5b
--- /dev/null
+++ b/projects/01/Mux.cmp
@@ -0,0 +1,9 @@
+| a | b | sel | out |
+| 0 | 0 | 0 | 0 |
+| 0 | 0 | 1 | 0 |
+| 0 | 1 | 0 | 0 |
+| 0 | 1 | 1 | 1 |
+| 1 | 0 | 0 | 1 |
+| 1 | 0 | 1 | 0 |
+| 1 | 1 | 0 | 1 |
+| 1 | 1 | 1 | 1 |