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