Files
remotesyn/examples/formal/project.cfg
2022-09-06 13:15:47 +02:00

41 lines
1015 B
INI

[project]
name = formal_project
version = 0.1
out_dir = OUT
build_dir = BUILD
[server]
hostname = localhost
port = 2020
privkey = /home/joppe/.ssh/id_rsa
pubkey = /home/joppe/.ssh/id_rsa.pub
# ######################################
# Basic VHDL simulation with GHDL
[target.sim]
toolchain = ghdl
# Toolchain settings
toplevel = tb_counter
runtime = all
ghdla_opts = --std=08
ghdle_opts = --std=08
ghdlr_opts = --std=08
# Fileset
files_vhdl = RTL/counter.vhd
SIM/tb_counter.vhd
# ######################################
# ######################################
# Formal verification with symbiyosys
[target.formal]
toolchain = symbiyosys
# Toolchain settings
sby_opts =
# Fileset
files_sby = SIM/counter.sby
files_other = RTL/counter.vhd
# ######################################