aboutsummaryrefslogtreecommitdiff
path: root/tools/builtInChips/And.hdl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/builtInChips/And.hdl')
-rw-r--r--tools/builtInChips/And.hdl16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/builtInChips/And.hdl b/tools/builtInChips/And.hdl
deleted file mode 100644
index d2c48b5..0000000
--- a/tools/builtInChips/And.hdl
+++ /dev/null
@@ -1,16 +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/And.hdl
-
-/**
- * And gate: out = 1 if {a == 1 and b == 1}, 0 otherwise
- */
-
-CHIP And {
-
- IN a, b;
- OUT out;
-
- BUILTIN And;
-}