summaryrefslogtreecommitdiff
path: root/tests/hana/test_intermout_always_ff_4_test.v
blob: cac420a478a0c0df8a5d08e943bb0f200314b139 (plain)
1
2
3
4
5
6
7
8
9
10
11
module FlipFlop(clk, cs, ns);
input clk;
input [31:0] cs;
output [31:0] ns;
integer is;

always @(posedge clk)
    is <= cs;

assign ns = is;
endmodule