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

   assign #(tPLH, tPHL) Y = ~(A & B);
endmodule