aboutsummaryrefslogtreecommitdiffstats
path: root/tests/sim/dff.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sim/dff.v')
-rw-r--r--tests/sim/dff.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/sim/dff.v b/tests/sim/dff.v
new file mode 100644
index 000000000..ce792b59a
--- /dev/null
+++ b/tests/sim/dff.v
@@ -0,0 +1,4 @@
+module dff( input d, clk, output reg q );
+ always @( posedge clk )
+ q <= d;
+endmodule