summaryrefslogtreecommitdiff
path: root/sn7430.v
diff options
context:
space:
mode:
Diffstat (limited to 'sn7430.v')
-rw-r--r--sn7430.v15
1 files changed, 15 insertions, 0 deletions
diff --git a/sn7430.v b/sn7430.v
new file mode 100644
index 0000000..425b7ab
--- /dev/null
+++ b/sn7430.v
@@ -0,0 +1,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