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



module open_source_line(

input wire drive_high,
output reg line

);

always @(*) begin
    if(drive_high == 1) begin
        line = 1;
    end
    else begin
        line = 0;
    end
end

endmodule

 

Was this helpful?
Upvote
Downvote