summaryrefslogtreecommitdiff
path: root/sn7421.v
blob: 08b40b82e8fa77b216cc9d96ef2ae6a85854dc32 (plain)
1
2
3
4
5
6
7
8
9
10
11
`timescale 1ns/1ps
module sn7421
  #(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