blob: aa89d8a87dfdba6ade1d1847a0b53d551e9564be [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
module prim_xilinx_buf #(
parameter int Width = 1
) (
input [Width-1:0] in_i,
(* keep = "true" *) output logic [Width-1:0] out_o
);
assign out_o = in_i;
endmodule