7420

From HDLBits

gatesPrevious

The 7400-series integrated circuits are a series of digital chips with a few gates each. The 7420 is a chip with two 4-input NAND gates.

Create a module with the same functionality as the 7420 chip. It has 8 inputs and 2 outputs.

7420.png

Expected solution length: Around 2 lines.

Module Declaration

module top_module ( 
    input p1a, p1b, p1c, p1d,
    output p1y,
    input p2a, p2b, p2c, p2d,
    output p2y );

You need to drive two signals (p1y and p2y) with a value.

Write your solution here

Upload a source file...