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

always @(posedge clk)
    is <= cs;

assign ns = is;
endmodule