summaryrefslogtreecommitdiff
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, 16 insertions, 0 deletions
diff --git a/tools/builtInChips/And.hdl b/tools/builtInChips/And.hdl
new file mode 100644
index 0000000..d2c48b5
--- /dev/null
+++ b/tools/builtInChips/And.hdl
@@ -0,0 +1,16 @@
+// 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;
+}