chip design made easy

Popular Pages

online Verilog Code for Register

Verilog code sample for the flip-flop/register triggered with a positive-edge clock.

module flop (Clk, D, Q);
input C, D;
output Q;
reg Q;


always @(posedge Clk)
begin
Q = D;
end
endmodule


People found these links also interested and knowledgeable

Register Transfer Language Discussions

Popular columns


Pool of Chip Articles are available.....