NC-Verlog/NC-VHDL/NC-SIM 1.150

源代码在线查看: full_adder_2.v

软件大小: 203 K
上传用户: wuegrcun
关键词: NC-Verlog NC-VHDL NC-SIM 1.150
下载地址: 免注册下载 普通下载 VIP

相关代码

				`include "half_adder_1.v"				module full_adder(a,b,cin,out,carry);				input a,b,cin;				output carry,out;								half_adder m1 (a,b,out1,carry1);				half_adder m2 (cin,out1,out,carry2);				or         m3 (carry,carry1,carry2);								endmodule							

相关资源