summaryrefslogtreecommitdiff
path: root/tests/hana/test_simulation_seq_ff_2_test.v
blob: f1d2b7b42c855096eed499bfde5af134d8c7f4ad (plain)
1
2
3
4
module test(input  in,  input clk,  output reg out);
always @(negedge clk)
   out <= in;
endmodule