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 reg y1,y2,y3);
    // Module functionality here
    always@(*)
    begin
        y1=a;
        y2=a;
        y3=a;
    end

endmodule

 

Was this helpful?
Upvote
Downvote