// 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 |