aboutsummaryrefslogtreecommitdiff
path: root/tools/builtInChips/DMux.hdl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/builtInChips/DMux.hdl')
-rw-r--r--tools/builtInChips/DMux.hdl20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/builtInChips/DMux.hdl b/tools/builtInChips/DMux.hdl
deleted file mode 100644
index 80153d7..0000000
--- a/tools/builtInChips/DMux.hdl
+++ /dev/null
@@ -1,20 +0,0 @@
-// This file is part of www.nand2tetris.org
-// and the book "The Elements of Computing Systems"
-// by Nisan and Schocken, MIT Press.
-// File name: tools/builtIn/DMux.hdl
-
-/**
- * Dmultiplexor.
- * {a,b} = {in,0} if sel == 0
- * {0,in} if sel == 1
- */
-
-
-CHIP DMux {
-
- IN in, sel;
- OUT a, b;
-
- BUILTIN DMux;
-}
-