summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGanderlaChaithanya2025-06-30 12:29:03 +0530
committerGanderlaChaithanya2025-06-30 12:29:03 +0530
commit19af40fa72cdc7589ca47d692a7e397b871dc467 (patch)
tree942e8f3352d92a1f9fccfd338e451e7f36dddb22
parentd1e62cdd6018db1c12044208775acc405b56c46b (diff)
downloadeSim-19af40fa72cdc7589ca47d692a7e397b871dc467.tar.gz
eSim-19af40fa72cdc7589ca47d692a7e397b871dc467.tar.bz2
eSim-19af40fa72cdc7589ca47d692a7e397b871dc467.zip
Verilog Code for TriState Buffer for the SubCircuit - SN54ALS29827
-rw-r--r--library/SubcircuitLibrary/sn54als29827/tristate_buff.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/SubcircuitLibrary/sn54als29827/tristate_buff.v b/library/SubcircuitLibrary/sn54als29827/tristate_buff.v
new file mode 100644
index 00000000..3f3863a7
--- /dev/null
+++ b/library/SubcircuitLibrary/sn54als29827/tristate_buff.v
@@ -0,0 +1,3 @@
+module tristate_buff(input wire a, input wire enable, output wire y);
+assign y = (enable) ? a : 1'bz;
+endmodule \ No newline at end of file