summaryrefslogtreecommitdiff
path: root/playground/tst_delay.v
diff options
context:
space:
mode:
authoruvok2026-01-09 15:18:23 +0100
committeruvok2026-01-09 15:18:23 +0100
commit6c83fd8730e55de8b1daaac1deb111d3d9bd408e (patch)
tree33a3dbc4fd87011b657b193224c3f39c5de6b766 /playground/tst_delay.v
parent678cb2d2d752bbac7625ba9b287762b3acabf116 (diff)
move stuff around
Diffstat (limited to 'playground/tst_delay.v')
-rw-r--r--playground/tst_delay.v17
1 files changed, 17 insertions, 0 deletions
diff --git a/playground/tst_delay.v b/playground/tst_delay.v
new file mode 100644
index 0000000..c4017bd
--- /dev/null
+++ b/playground/tst_delay.v
@@ -0,0 +1,17 @@
+`timescale 1us/1us
+
+module tst_delay (
+ input clk_i,
+ input data_i,
+ output reg data_o
+);
+
+initial begin
+ data_o = 0;
+end
+
+always @(posedge clk_i) begin
+ data_o <= data_i;
+end
+
+endmodule