-
Notifications
You must be signed in to change notification settings - Fork 68
INV
Pepijn de Vos edited this page Nov 19, 2024
·
4 revisions
The INV primitive is an Inverter, which takes one input bit I and produces a corresponding output bit O. The port description indicates that the input I receives data from outside the component or module, while the output O transmits the inverted value of I to external destinations. This means that the primary function of the INV primitive is to invert or flip the state of a single binary digit (bit), making it either high (1) when low (0) and vice versa.
This device is supported in Apicula
Port | Size | Direction |
---|---|---|
I | 1 | input |
O | 1 | output |
INV inv_inst (
.I(I),
.O(O)
);