1
0
mirror of https://github.com/openpower-cores/a2i.git synced 2026-04-30 13:32:12 +00:00
Files
openpower-cores.a2i/run.py
2021-05-23 18:50:21 +02:00

22 lines
646 B
Python
Executable File

#!/usr/bin/env python3
"""VUnit run script."""
from pathlib import Path
from vunit import VUnit
_rel = Path(__file__).parent / "rel"
prj = VUnit.from_argv()
for libName in ["support", "ibm", "clib", "tri"]:
prj.add_library(libName).add_source_files(_rel / "src" / "vhdl" / f"{libName}" / "*.vhdl")
# VUnit doesn't accept libraries named work. These files are compiled to the top library
prj.add_library("top").add_source_files(_rel / "src" / "vhdl" / "work" / "*.vhdl")
# Simulation only library containing VHDL mocks for Verilog UNIMACROs
prj.add_library("unimacro").add_source_files(_rel / "sim" / "unimacro" / "*.vhdl")
prj.main()