Source code for avl_axi_stream._tools

# Copyright 2025 Apheleia
#
# Description:
# Apheleia Verification Library Tools

from importlib.resources import files


[docs] def get_verilog(): """ Get the path to the Verilog source files for the AXI-STREAM agent. :return: Path to the Verilog source files :rtype: pathlib.Path """ path = files("avl_axi_stream.rtl").joinpath("avl_axi_stream.sv") print(path)