Browse Source

Remove gitignore from alu folder; added link to Yosys

verific_problem
T. Meissner 6 years ago
parent
commit
2f7959db61
3 changed files with 3 additions and 4 deletions
  1. +2
    -2
      README.md
  2. +0
    -1
      alu/.gitignore
  3. +1
    -1
      alu/Makefile

+ 2
- 2
README.md View File

@ -1,6 +1,6 @@
# formal_verification # formal_verification
Tests and examples of using formal verification to check correctness of digital hardware designs. All tests are done with SymbiYosys, a free formal verification tool based on Yosys. Some examples use the VHDL/SystemVerilog parser plugin by Verific which isn't free SW and nit included in the free Yosys version. See on the [Symbiotic EDA website](https://www.symbioticeda.com) for more information.
Tests and examples of using formal verification to check correctness of digital hardware designs. All tests are done with SymbiYosys, a front-end for formal verification flows based on [Yosys](https://github.com/YosysHQ). Some examples use the VHDL/SystemVerilog parser plugin by Verific which isn't free SW and not included in the free Yosys version. See on the [Symbiotic EDA website](https://www.symbioticeda.com) for more information.
### alu ### alu
A simple ALU design in VHDL, together with a formal testbench written in SystemVerilog. The testbench contains various simple properties for assert & cover directives which are proved with the SymbiYosys tool.
A simple ALU design in VHDL, together with a formal testbench written in SystemVerilog. The testbench contains various simple SVA properties used by assert & cover directives which are proved with the SymbiYosys tool.

+ 0
- 1
alu/.gitignore View File

@ -1 +0,0 @@
*/work/*

+ 1
- 1
alu/Makefile View File

@ -1,2 +1,2 @@
alu: alu.vhd alu_t.v alu_f.sby
alu: alu.vhd alu_t.sv alu_f.sby
sby -f -d work alu_f.sby sby -f -d work alu_f.sby

Loading…
Cancel
Save