aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/top.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtl/top.v')
-rw-r--r--src/rtl/top.v23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/rtl/top.v b/src/rtl/top.v
deleted file mode 100644
index 58daeb2..0000000
--- a/src/rtl/top.v
+++ /dev/null
@@ -1,23 +0,0 @@
-module top (
- input wire clk_in,
- output wire rled1,
- output wire rled2,
- output wire rled3,
- output wire rled4,
- output wire gled5
- );
-
- reg [31 : 0] counter_reg = 32'b0;
-
- assign rled1 = counter[21];
- assign rled2 = counter[22];
- assign rled3 = counter[23];
- assign rled4 = counter[24];
- assign gled5 = counter[25];
-
- always @ (posedge hwclk)
- begin
- counter_reg <= counter_reg + 1;
- end
-
-endmodule // top