blob: fd4f1f7ff52271ee86dc6723b702a85d338eb29d [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 aes_bind;
bind aes tlul_assert #(
.EndpointType("Device")
) tlul_assert_device (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
bind aes aes_csr_assert_fpv aes_csr_assert (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
endmodule