Prev Problem
Next Problem

1. Wire

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

Here we have to use wire as a connection, therefore initialising the data type as wire

Code

module top_module (
    input  wire a,
    output wire y
);

    assign y = a;  

endmodule

 

Was this helpful?
Upvote
Downvote