blob: 1ea71841a493a369ee71a41b67b69b64243db41e [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
`include "prim_assert.sv"
module prim_sec_anchor_buf #(
parameter int Width = 1
) (
input [Width-1:0] in_i,
output logic [Width-1:0] out_o
);
prim_buf #(
.Width(Width)
) u_secure_anchor_buf (
.in_i,
.out_o
);
endmodule