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