1
0
mirror of synced 2026-05-03 14:50:26 +00:00
Files
YosysHQ.yosys/tests/hana/test_simulation_always_27_test.v
Clifford Wolf 7764d0ba1d initial import
2013-01-05 11:13:26 +01:00

14 lines
157 B
Verilog

module FlipFlop(clock, cs, ns);
input clock;
input cs;
output reg ns;
reg temp;
always @(posedge clock)
begin
temp <= cs;
ns <= temp;
end
endmodule