20计算机科学与技术数字逻辑基础实验
一、modelsim工程仿真流程代码:module fulladd(sum,c_out,a,b,c_in);output sum,c_out;input a,b,c_in;wire s1,c1,c2;xor (s1,a,b);and (c1,a,b);xor (sum,s1,c_in);and (c2,s1,c_in);or (c_out,c2,c1);endmodule庆幸 13:19:36module test;wire sum, c_out;reg a,b,c_in;
原创
2021-05-28 20:21:19 ·
195 阅读 ·
0 评论