7458data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw==

该博客介绍了如何用Verilog语言创建一个与7458芯片功能相同的模块。这个模块包含四个AND门和两个OR门,接受10个输入并提供2个输出。作者提供了两种实现方式,一种是直接使用assign语句驱动输出,另一种是通过内部信号线作为中间步骤。示例代码展示了具体实现细节。
摘要由CSDN通过智能技术生成

The 7458 is a chip with four AND gates and two OR gates. This problem is slightly more complex than 7420.

Create a module with the same functionality as the 7458 chip. It has 10 inputs and 2 outputs. You may choose to use an statement to drive each of the output wires, or you may choose to declare (four) wires for use as intermediate signals, where each internal wire is driven by the output of one of the AND gates. For extra practice, try it both ways. assign

 

module top_module ( 
    input p1a, p1b, p1c, p1d, p1e, p1f,
    output p1y,
    input p2a, p2b, p2c, p2d,
    output p2y );
wire p2a_p2b;
wire p2c_p2d;
wire p1_acb;
wire p1_fed;
assign p2a_p2b = p2a && p2b;
assign p2c_p2d = p2c && p2d;
assign p2y = p2a_p2b || p2c_p2d;
assign p1_acb = (p1a && p1c && p1b);
assign p1_fed = (p1f && p1e && p1d);
assign p1y = (p1_acb|p1_fed);


endmodule

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值