1.实验目的:
4位加法器的门级建模
2.实验内容:
参照哔哩哔哩中的教程代码,进行Modelsim
3.实验原理:
根据书上的代码和老师的教学步骤进行仿真
4.实验工具:
quartus ii 与modlsim软件
5.实验代码:
module fulladd(S,Cout,Cin,A,B);
output S,Cout;
input Cin,A,B;
wire and1,and2,and3,and4;
xor (S,Cin,A,B);
and (and1,Cin,A);
and (and2,A,B);
and (and3,Cin,B);
or (Cout,and1,and2,and3);
endmodule
6.实验截图:
7.实验视频:
请下载哔哩哔哩动画打开此网址:https://b23.tv/W7cLtM