blob: b00ad74fd7e941a3449f1defdbb5ea1a4064e842 [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 (
input in_i,
(* keep = "true" *) output logic out_o
);
assign out_o = in_i;
endmodule : prim_xilinx_buf