For this quiz. I need to write code that acts like a ground of the circuit.
Here is my code.
module top_module (
output out);
assign out = 1’b0;
endmodule
Reference: https://hdlbits.01xz.net/wiki/Exams/m2014_q4i
For this quiz. I need to write code that acts like a ground of the circuit.
Here is my code.