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