Source code for avl_axi._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 agent. :return: Path to the Verilog source files :rtype: pathlib.Path """ path = files("avl_axi.rtl").joinpath("avl_axi.sv") print(path)