blob: 7855b706f3a82139ff2a89a307c2d55ae5991a7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
`timescale 1ns/1ps
module sn7422
#(parameter tPLH = 0, tPHL = 0)
(input [1:0] A,
input [1:0] B,
input [1:0] C,
input [1:0] D,
output [1:0] Y);
assign #(tPLH, tPHL) (strong0, highz1) Y = ~(A & B & C & D);
endmodule
|