HDLBits answers

目录

Getting started

Getting started

module top_module( output one );
	
	assign one = 1'b1;
	
endmodule

Output Zero

module top_module ( output zero );
	
	assign zero = 1'b0;
	
endmodule

posted @ 2023-03-21 14:29  uniqueboy  阅读(15)  评论(0)    收藏  举报  来源