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 wire a,
    output wire y1,y2,y3


);
    wire temp;
    assign  temp = a;
  assign  y1= temp;
  assign  y2 = temp;
  assign  y3 = temp;
  
endmodule

 

Was this helpful?
Upvote
Downvote