summaryrefslogtreecommitdiff
path: root/hdl/testing/tb_inc.v
diff options
context:
space:
mode:
Diffstat (limited to 'hdl/testing/tb_inc.v')
-rw-r--r--hdl/testing/tb_inc.v26
1 files changed, 0 insertions, 26 deletions
diff --git a/hdl/testing/tb_inc.v b/hdl/testing/tb_inc.v
deleted file mode 100644
index c0cf480..0000000
--- a/hdl/testing/tb_inc.v
+++ /dev/null
@@ -1,26 +0,0 @@
-module tb_inc;
-
-wire [7:0] count;
-reg enable;
-reg clock;
-reg reset;
-
-initial begin
- $from_myhdl(
- enable,
- clock,
- reset
- );
- $to_myhdl(
- count
- );
-end
-
-inc dut(
- count,
- enable,
- clock,
- reset
-);
-
-endmodule