diff options
Diffstat (limited to 'tests/hana/test_simulation_seq_ff_2_test.v')
-rw-r--r-- | tests/hana/test_simulation_seq_ff_2_test.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/hana/test_simulation_seq_ff_2_test.v b/tests/hana/test_simulation_seq_ff_2_test.v new file mode 100644 index 000000000..f1d2b7b42 --- /dev/null +++ b/tests/hana/test_simulation_seq_ff_2_test.v @@ -0,0 +1,4 @@ +module test(input in, input clk, output reg out); +always @(negedge clk) + out <= in; +endmodule |