blob: 14a27ee88246c19404dd9e1ff21eec0e24255e5b [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 usbdev_bind;
bind usbdev tlul_assert #(
.EndpointType("Device")
) tlul_assert_device (
.clk_i,
.rst_ni,
.h2d (tl_i),
.d2h (tl_o)
);
// import usbdev_reg_pkg::*;
// bind usbdev usbdev_csr_assert_fpv usbdev_csr_assert (
// .clk_i,
// .rst_ni,
// .h2d (tl_i),
// .d2h (tl_o),
// .reg2hw (reg2hw),
// .hw2reg (hw2reg)
// );
endmodule