49 lines
2.2 KiB
Python
49 lines
2.2 KiB
Python
import typer
|
|
import elab
|
|
import build_env
|
|
from typing_extensions import Annotated
|
|
|
|
app = typer.Typer()
|
|
|
|
software = typer.Typer()
|
|
hardware = typer.Typer()
|
|
|
|
app.add_typer(software, name="sim", help="GHDL simulator command group")
|
|
app.add_typer(hardware, name="syn", help="Synthesis and deployment command group")
|
|
|
|
|
|
@software.command(help="Initializes the GHDL build environment in a library named \"work\". Adds all files ending in \".vhd\" to the project")
|
|
def init():
|
|
return build_env.createBuildEnv()
|
|
|
|
|
|
def complete_vhdl_ver():
|
|
return ["87", "93", "93c", "00", "02", "08"]
|
|
|
|
@software.command(help="Runs analysis and elaboration on the provided top definition and architecture using GHDL. Automatically adds new files not present in the project")
|
|
def elab(
|
|
topdef: Annotated[str, typer.Argument(help="Top Definition entity to synthesize")] = "",
|
|
arch: Annotated[str, typer.Argument(help="Architecture to synthesize within the top definition provided")] = "",
|
|
library: Annotated[str, typer.Option("--library", "-l", help="Library to compile from")] = "work",
|
|
std: Annotated[str, typer.Option(help="Which VHDL standard to use. 87, 93, 93c, 00, 02 or 08", autocompletion=complete_vhdl_ver)] = "93c"
|
|
):
|
|
print(f"Elaborating {topdef} with arch {arch} in library {library}. VHDL {std}")
|
|
return elab.elabDesign(topdef, arch, library, std)
|
|
|
|
@software.command(help="Simulates elaborated design in GHDL and views waves in gtkwave. Automatically runs `gantry elab` on the same top def and arch.")
|
|
def run(
|
|
topdef: Annotated[str, typer.Argument(help="Top Definition entity to synthesize")] = "",
|
|
arch: Annotated[str, typer.Argument(help="Architecture to synthesize within the top definition provided")] = "",
|
|
library: Annotated[str, typer.Option("--library", "-l", help="Library to compile from")] = "work",
|
|
std: Annotated[str, typer.Option(help="Which VHDL standard to use. 87, 93, 93c, 00, 02 or 08", autocompletion=complete_vhdl_ver)] = "93c"
|
|
):
|
|
print(f"Running (and synthesizing if needed) {topdef} with arch {arch} in library {library}. VHDL {std}")
|
|
return elab.runDesign(topdef, arch, library, std)
|
|
|
|
@hardware.command()
|
|
def build():
|
|
print("Build!")
|
|
|
|
if __name__ == "__main__":
|
|
app()
|