-
Notifications
You must be signed in to change notification settings - Fork 68
OBUF
Pepijn de Vos edited this page Nov 17, 2024
·
2 revisions
The OBUF primitive, also known as the Output Buffer, is a basic digital logic component that provides an output signal (O) from a given input signal (I). The OBUF's primary function is to buffer or isolate the output from the input, preventing any external influences on the internal workings of the subsequent circuitry.
This device is supported in Apicula.
Port | Size | Direction |
---|---|---|
I | 1 | input |
O | 1 | output |
OBUF obuf_inst (
.I(I),
.O(O)
);