$_BUF_#

A buffer. This cell type is always optimized away by the opt_clean pass.

Truth table:    A | Y
               ---+---
                0 | 0
                1 | 1

Simulation model (Verilog)#

Listing 129 simcells.v:39#
module \$_BUF_ (A, Y);
    input A;
    output Y;
    assign Y = A;
endmodule

Note

This page was auto-generated from the output of help $_BUF_.