blob: cca3fcd4d8bad664411b244c514eca5bb67d608c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
`timescale 1ns/1ps
module sn7420
#(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) Y = ~(A & B & C & D);
endmodule
|