summaryrefslogtreecommitdiff
path: root/sn7409.v
blob: e577393a87e2e7a61ec907905f657d40be9e5fff (plain)
1
2
3
4
5
6
7
8
9
`timescale 1ps/1ns
module sn7409
  #(parameter tPLH = 0, tPHL = 0)
  (input [3:0]	A,
   input [3:0]	B,
   output [3:0]	Y);
   
   assign #(tPLH, tPHL) (strong0, highz1) Y = A & B;
endmodule