赞
踩
This three-input NAND gate doesn’t work. Fix the bug(s).
You must use the provided 5-input AND gate:
module andgate ( output out, input a, input b, input c, input d, input e );
简言之
用一个5输入的与门模块-------实现3输入与非
//要一个3输入的与非门
//用一个5输入的与门实现---3输入与非
module top_module (input a, input b, input c, output out);//
//原来错误语句,
//andgate inst1 ( a, b, c, out );
/**正确语句***/
//定义与门输出
wire and_out;
//写5输入与门--**注意输出放到最前
andgate inst1 ( and_out, a, b, c, 1'b1,1'b1);
//与非门输出
assign out=~and_out;
endmodule
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。