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