-
Notifications
You must be signed in to change notification settings - Fork 68
TBUF
Pepijn de Vos edited this page Nov 17, 2024
·
2 revisions
The Gowin TBUF primitive is an Output Buffer with Tristate Control, active-low. It has three inputs: I for data input signal, OEN for output tristate enable signal, and outputs O with its value controlled by the OEN signal. The primitive allows for controlling the output to be in a high-impedance state when OEN is low.
This device is supported in Apicula.
Port | Size | Direction |
---|---|---|
I | 1 | input |
O | 1 | output |
OEN | 1 | input |
TBUF tbuf_inst (
.I(I),
.O(O),
.OEN(OEN)
);