aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/anlogic/counter.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/anlogic/counter.v')
-rw-r--r--tests/arch/anlogic/counter.v17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/arch/anlogic/counter.v b/tests/arch/anlogic/counter.v
deleted file mode 100644
index 52852f8ac..000000000
--- a/tests/arch/anlogic/counter.v
+++ /dev/null
@@ -1,17 +0,0 @@
-module top (
-out,
-clk,
-reset
-);
- output [7:0] out;
- input clk, reset;
- reg [7:0] out;
-
- always @(posedge clk, posedge reset)
- if (reset) begin
- out <= 8'b0 ;
- end else
- out <= out + 1;
-
-
-endmodule