Library of reusable VHDL components
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.

77 lines
2.2 KiB

10 years ago
  1. # libvhdl
  2. A LGPLv3 licensed library of reusable components for VHDL designs and testbenches
  3. ##sim
  4. (Non) synthesible components for testbenches
  5. ##### AssertP
  6. Package with various assertion procedures.
  7. * `assert_true(x[, str, level])` checks if boolean x = false
  8. * `assert_false(x[, str, level])` checks if boolean x = false
  9. * `assert_equal(x, y[, str, level])` checks if x = y
  10. * `assert_unequal(x, y[, str, level])` checks if x /= y
  11. All of the assert_* procedures have following optional parameters:
  12. * `str` print string str to console instead implemented one
  13. * `level` severity level (note, warning, error, failure)
  14. ##### SimP
  15. Package with various components general useful for simulation
  16. * `wait_cycles(x, n)` waits for n rising edges on std_logic signal x
  17. * `spi_master()` configurable master for SPI protocol, supports all cpol/cpha modes
  18. * `spi_slave()` configurable slave for SPI protocol, supports all cpol/cpha modes
  19. ##### StringP
  20. Package with various functions to convert to string
  21. * `to_char(x)` returns string with binary value of std_logic x
  22. * `to_string(x)` returns string with binary value of std_logic_vector x
  23. ##### QueueP
  24. Package with various implementations of queue types:
  25. * `t_simple_queue` simple array based FIFO queue
  26. * `t_list_queue` linked list FIFO queue using access types
  27. ## syn
  28. Synthesizable components for implementing in FPGA
  29. ##### SpiSlaveE
  30. Configurable SPI slave with support modes 0-3 and simple VAI local backend
  31. ##test
  32. Unit tests for each component
  33. ##### QueueT
  34. Unit tests for components of QueueP package
  35. ##### SimT
  36. Unit tests for components of SimP package
  37. ##### SpiT
  38. Unit tests for SpiSlave component
  39. ##### StringT
  40. Unit tests for components of SimP package
  41. ## Dependencies
  42. To run the tests, you have to install GHDL. You can get it from [http://sourceforge.net/projects/ghdl-updates/](http://sourceforge.net/projects/ghdl-updates/).
  43. ## Building
  44. Type `make` and you should see the successfully running tests
  45. ```
  46. $ make
  47. ghdl -a --std=02 ../sim/QueueP.vhd QueueT.vhd
  48. ghdl -e --std=02 QueueT
  49. ghdl -r --std=02 QueueT
  50. QueueT.vhd:52:5:@0ms:(report note): INFO: t_simple_queue test finished successfully
  51. QueueT.vhd:87:5:@0ms:(report note): INFO: t_list_queue test finished successfully
  52. ```