Examples of using PSL for functional and formal verification of VHDL with GHDL (and SymbiYosys)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.6 KiB

  1. [![tests](https://github.com/tmeissner/psl_with_ghdl/workflows/tests/badge.svg?branch=master)](https://github.com/tmeissner/psl_with_ghdl/actions?query=workflow%3Atests)
  2. # psl_with_ghdl
  3. A collection of examples of using PSL for functional and formal verification of VHDL with GHDL (and SymbiYosys).
  4. This is a project with the purpose to get a current state of PSL implementation in GHDL. It probably will find unsupported PSL features, incorrect implemented features or simple bugs like GHDL crashs.
  5. It is also intended for experiments with PSL when learning the language. You can play around with the examples, as they are pretty simple. You can comment out failing assertions if you want to have a sucessful proof os simulation if you want. You can change them to see what happens. Have fun!
  6. The next two lists will grow during further development
  7. ## PSL features supported by GHDL:
  8. * assert directive
  9. * cover directive
  10. * assume directive (synthesis)
  11. * restrict directive (synthesis)
  12. * always operator
  13. * never operator
  14. * implication operator
  15. * next operator
  16. * next[n] operator
  17. * next_event operator
  18. * next_event[n] operator
  19. * until operator
  20. * until_ operator
  21. * before operator (GHDL crash with a specific property, see psl_before.vhd)
  22. * eventually! operator (simulation, synthesis produces a GHDL crash, see psl_eventually.vhd)
  23. ## PSL features not yet supported by GHDL:
  24. * next_a[i:j] operator
  25. * next_e[i:j] operator
  26. * next_event_a[i:j] operator
  27. * next_event_e[i:j] operator
  28. ## PSL features supported by GHDL but with wrong behaviour
  29. * before_ operator (Overlapping between left & right side not working, see psl_before.vhd)