当前位置: 首页> 教育> 就业 > 中国航天科工集团有限公司_做软件页面设计的软件_百度竞价推广开户价格_营销型网站的特点

中国航天科工集团有限公司_做软件页面设计的软件_百度竞价推广开户价格_营销型网站的特点

时间:2025/7/13 0:23:22来源:https://blog.csdn.net/2201_75297369/article/details/144618022 浏览次数:0次
中国航天科工集团有限公司_做软件页面设计的软件_百度竞价推广开户价格_营销型网站的特点

时间:2024.12.20

Exams/m2014 q4g

代码 

module top_module (input in1,input in2,input in3,output out);assign out=(in1^~in2)^in3;
endmodule

运行结果 

Gates

 

代码

module top_module( input a, b,output out_and,output out_or,output out_xor,output out_nand,output out_nor,output out_xnor,output out_anotb
);
assign out_and=a&&b;assign out_or=a||b;assign out_xor=a^b;assign out_nand=~(a&&b);assign out_nor=~(a||b);assign out_xnor=a~^b;assign out_anotb=a&&(~b);
endmodule

运行结果

 

7420 

代码

module top_module ( input p1a, p1b, p1c, p1d,output p1y,input p2a, p2b, p2c, p2d,output p2y );assign p1y=~(p1a&&p1b&&p1c&&p1d);assign p2y=~(p2a&&p2b&&p2c&&p2d);
endmodule

运行结果

 Truthtable1

 

代码

module top_module( input x3,input x2,input x1,  // three inputsoutput f   // one output
);assign f=(~x3)&&x2||(x1&&x3);
endmodule

 

运行结果

 Mt2015 q4a

代码

module top_module (input x, input y, output z);assign z=(x^y)&x;
endmodule

运行结果

 Mt2015 q4b

代码

module top_module ( input x, input y, output z );
assign z=x^~y;
endmodule

运行结果

关键字:中国航天科工集团有限公司_做软件页面设计的软件_百度竞价推广开户价格_营销型网站的特点

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: