aboutsummaryrefslogtreecommitdiff
path: root/tools/builtInChips/DFF.hdl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/builtInChips/DFF.hdl')
-rw-r--r--tools/builtInChips/DFF.hdl18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/builtInChips/DFF.hdl b/tools/builtInChips/DFF.hdl
deleted file mode 100644
index c66b796..0000000
--- a/tools/builtInChips/DFF.hdl
+++ /dev/null
@@ -1,18 +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/DFF.hdl
-
-/**
- * Data Flip-flop: out(t) = in(t-1)
- * where t is the current time unit, or clock cycle.
- */
-
-CHIP DFF {
-
- IN in;
- OUT out;
-
- BUILTIN DFF;
- CLOCKED in;
-}