-
Notifications
You must be signed in to change notification settings - Fork 68
INV
Pepijn de Vos edited this page Nov 17, 2024
·
4 revisions
The Gowin INV primitive is an inverter, which takes a single input signal (I) and produces its inverted output (O). The I/O ports are described as follows: I - Input INV data input; O - Output INV data output. In Verilog, the primitive can be instantiated with the code "INV uut (.O(O), .I(I));" while in VHDL, it is implemented as a component "COMPONENT INV ... PORT ( O:OUTPUT std_logic; I:IN std_logic );".
This device is not yet supported in Apicula
Port | Size | Direction |
---|---|---|
I | 1 | input |
O | 1 | output |
INV inv_inst (
.I(I),
.O(O)
);