summaryrefslogtreecommitdiff
path: root/sn7408.v
diff options
context:
space:
mode:
authorPaul Harrison <[email protected]>2026-06-15 12:43:46 -0700
committerPaul Harrison <[email protected]>2026-06-15 12:43:46 -0700
commitd36312347320006b4fdf096df3283223dbd4a302 (patch)
tree7544853a0e5e65fc8d939db9ebb8257237425a02 /sn7408.v
some modelsmain
Diffstat (limited to 'sn7408.v')
-rw-r--r--sn7408.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/sn7408.v b/sn7408.v
new file mode 100644
index 0000000..63b0a87
--- /dev/null
+++ b/sn7408.v
@@ -0,0 +1,9 @@
+`timescale 1ns/1ps
+module sn7408
+ #(parameter tPLH = 0, tPHL = 0)
+ (input [3:0] A,
+ input [3:0] B,
+ output [3:0] Y);
+
+ assign #(tPLH, tPHL) Y = A & B;
+endmodule