blob: ce18b47d4d1c209be9abf22c9ff15d8a1368ea46 [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_flop #(
parameter int Width = 1,
parameter logic [Width-1:0] ResetValue = 0
) (
input clk_i,
input rst_ni,
input [Width-1:0] d_i,
output logic [Width-1:0] q_o
);
prim_flop #(
.Width(Width),
.ResetValue(ResetValue)
) u_secure_anchor_flop (
.clk_i,
.rst_ni,
.d_i,
.q_o
);
endmodule