1
0
mirror of synced 2026-04-30 13:42:32 +00:00
Files
YosysHQ.yosys/tests/hana/test_intermout_always_ff_4_test.v
Clifford Wolf 7764d0ba1d initial import
2013-01-05 11:13:26 +01:00

12 lines
153 B
Verilog

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