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 t1,t2,t3;
assign t1=a;
assign t2=a;
assign t3=a;

assign y1=t1;
assign y2=t2;
assign y3=t3;
    // Module functionality here

endmodule

 

Was this helpful?
Upvote
Downvote