mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 14:17:51 -04:00
17 lines
290 B
Python
Executable file
17 lines
290 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from pathlib import Path
|
|
from vunit import VUnit
|
|
|
|
ROOT = Path(__file__).parent
|
|
|
|
PRJ = VUnit.from_argv()
|
|
|
|
PRJ.add_library("neorv32").add_source_files([
|
|
ROOT / "*.vhd",
|
|
ROOT / "../rtl/**/*.vhd"
|
|
])
|
|
|
|
PRJ.set_sim_option("disable_ieee_warnings", True)
|
|
|
|
PRJ.main()
|