blob: cd81161bdedacf6a2a9f17971c7827e6d4ac6211 [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 csrng_bind;
bind csrng tlul_assert #(
.EndpointType("Device")
) tlul_assert_device (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
bind csrng csrng_csr_assert_fpv csrng_csr_assert (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
endmodule