diff options
Diffstat (limited to 'sn7422.v')
| -rw-r--r-- | sn7422.v | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sn7422.v b/sn7422.v new file mode 100644 index 0000000..7855b70 --- /dev/null +++ b/sn7422.v @@ -0,0 +1,11 @@ +`timescale 1ns/1ps +module sn7422 + #(parameter tPLH = 0, tPHL = 0) + (input [1:0] A, + input [1:0] B, + input [1:0] C, + input [1:0] D, + output [1:0] Y); + + assign #(tPLH, tPHL) (strong0, highz1) Y = ~(A & B & C & D); +endmodule |
