summaryrefslogtreecommitdiff
path: root/sn7415.v
blob: eeee05a1fb83b19a5dba1c5bfeaa0415586ef516 (plain)
1
2
3
4
5
6
7
8
9
10
`timescale 1ns/1ps
module sn7415
  #(parameter tPLH = 0, tPHL = 0)
  (input [2:0]	A,
   input [2:0]	B,
   input [2:0]  C,
   output [2:0]	Y);

   assign #(tPLH, tPHL) (strong0, highz1) Y = A & B & C;
endmodule