summaryrefslogtreecommitdiff
path: root/playground/template.v
diff options
context:
space:
mode:
Diffstat (limited to 'playground/template.v')
-rw-r--r--playground/template.v14
1 files changed, 14 insertions, 0 deletions
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