Prev Problem
Next Problem

24. Open-Source Line using tri0

Back To All Submissions
Previous Submission
Next Submission

Solving Approach

How do you plan to solve it?

 

 

Code

/*Write your code here*/
module open_source_line (
    input drive_high ,
    output  line 
);

   assign line=drive_high ;
endmodule

 

Was this helpful?
Upvote
Downvote