$concat#

No help message for this cell type found.

Simulation model (Verilog)#

Listing 281 simlib.v:1306#
module \$concat (A, B, Y);

    parameter A_WIDTH = 0;
    parameter B_WIDTH = 0;

    input [A_WIDTH-1:0] A;
    input [B_WIDTH-1:0] B;
    output [A_WIDTH+B_WIDTH-1:0] Y;

    assign Y = {B, A};

endmodule

Note

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