blob: 0f0f7c07de29fca14f39e0bf1e3e5b9f17cf89a7 [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 usbuart_bind;
bind usbuart tlul_assert #(
.EndpointType("Device")
) tlul_assert_device (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
import usbuart_reg_pkg::*;
bind usbuart usbuart_csr_assert_fpv usbuart_csr_assert (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o),
.reg2hw (reg2hw),
.hw2reg (hw2reg)
);
endmodule