Fixed bug in elab script

This commit is contained in:
Erik Örtenberg 2025-02-12 10:53:04 +01:00
parent 4327ba380d
commit 13d4967290

View File

@ -22,7 +22,7 @@ def runDesign(topDef: str, arch: str, lib: str, std: str):
wavePath = os.path.join(os.getcwd(), "wave")
command = [ ## may add -v for verbose
"ghdl", "-r", f"{topDef}", f"{arch}",
f"--wave={os.path.join(libPath, topDef)}-{arch}.ghw" ##, "--read-wave-opt=<See"
f"--wave=../wave/{topDef}-{arch}.ghw" ##, "--read-wave-opt=<See"
]
subprocess.run(command, cwd=libPath)
command = [