altera Quartus II modelSim 自動模擬搭配

源代码在线查看: full_adder.vhd

软件大小: 188 K
上传用户: maryyxl
关键词: modelSim Quartus altera II
下载地址: 免注册下载 普通下载 VIP

相关代码

				-- FileName: Full_Adder.vhd
				entity Full_Adder is
					port(
							X,Y,CIN	:	in	BIT;
							COUT	:	out BIT;
							SUM		:	out	BIT
						);
				end entity Full_Adder;
				
				architecture syn of Full_Adder is
					signal temp1,temp2 : BIT;
				begin
					temp1 					temp2 					SUM 					COUT 					
				end architecture syn;    
							

相关资源