Prev Problem
Next Problem

2. Fan-Out Wire

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

 

Code

module top_module(
    input a,output y1,y2,y3// Declare Inputs and outputs here
);
    wire a1,a2,a3;
    assign {a1,a2,a3}={a,a,a};
    assign {y1,y2,y3}={a1,a2,a3};
    // Module functionality here

endmodule

 

Was this helpful?
Upvote
Downvote