Wire의 사용법에 대한 문제
input in
을 output out
에 연결하라는 간단한 문제이다.
My Answer
module top_module(input in, output out);
assign out = in;
endmodule
Wire의 사용법에 대한 문제
input in
을 output out
에 연결하라는 간단한 문제이다.
module top_module(input in, output out);
assign out = in;
endmodule