From 6c83fd8730e55de8b1daaac1deb111d3d9bd408e Mon Sep 17 00:00:00 2001 From: uvok Date: Fri, 9 Jan 2026 15:18:23 +0100 Subject: move stuff around --- playground/template.v | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 playground/template.v (limited to 'playground/template.v') diff --git a/playground/template.v b/playground/template.v new file mode 100644 index 0000000..e6f5280 --- /dev/null +++ b/playground/template.v @@ -0,0 +1,14 @@ +`timescale 1us/1us + +module template ( + input rst_i, + input clk_i +); + +always @(posedge clk_i or negedge rst_i) begin + if (!rst_i) begin + + end +end + +endmodule -- cgit v1.2.3