summaryrefslogtreecommitdiff
path: root/playground/template.v
diff options
context:
space:
mode:
authoruvok2026-01-09 15:18:23 +0100
committeruvok2026-01-09 15:18:23 +0100
commit6c83fd8730e55de8b1daaac1deb111d3d9bd408e (patch)
tree33a3dbc4fd87011b657b193224c3f39c5de6b766 /playground/template.v
parent678cb2d2d752bbac7625ba9b287762b3acabf116 (diff)
move stuff around
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