Module shift

2023. 6. 10. 13:30FPGA/HDLBits

728x90

Problem Statement

You are given a module my_dff with two inputs and one output (that implements a D flip-flop). Instantiate three of them, then chain them together to make a shift register of length 3. The clk port needs to be connected to all instances.

The module provided to you is: module my_dff ( input clk, input d, output q );

Note that to make the internal connections, you will need to declare some wires. Be careful about naming your wires and module instances: the names must be unique.

module top_module ( input clk, input d, output q );
    
    wire out_dff1, out_dff2;
    
    my_dff dff1 (clk,d,out_dff1);
    my_dff dff2 (clk,out_dff1, out_dff2);
    my_dff dff3 (clk,out_dffA2, q);
    
endmodule

 

'FPGA > HDLBits' 카테고리의 다른 글

Module add  (0) 2023.06.10
Module shift8  (0) 2023.06.10
Module name  (0) 2023.06.09
Module pos  (0) 2023.06.09
Module  (0) 2023.06.09