add_half.v

来自「Systemverilog 编写的贩卖机代码」· Verilog 代码 · 共 7 行

V
7
字号
module Add_half_0_delay(sum,c_out,a,b);
	output		sum,c_out;
	input			a,b;
	xor				M1(sum,a,b);
	and				M2(c_out,a,b);
endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?