summaryrefslogtreecommitdiff
path: root/sn7430.v
blob: 425b7abc1f9441b26f3305a5265cc13607bf448f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
`timescale 1ns/1ps
module sn7430
  #(parameter tPLH = 0, tPHL = 0)
  (input  A,
   input  B,
   input  C,
   input  D,
   input  E,
   input  F,
   input  G,
   input  H,
   output Y);

   assign #(tPLH, tPHL) Y = ~(A & B & C & D & E & F & G & H);
endmodule