Studentenversion des ESY6/A Praktikums "signal_processing".
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.

Makefile 976B

12345678910111213141516171819202122232425262728
  1. vhdl_srcs = ../../../hardware/system/reg32.vhd \
  2. ../../../hardware/system/task.vhd \
  3. ../../../hardware/system/avalon_slave.vhd \
  4. ../../../hardware/system/avalon_slave_transitions.vhd \
  5. ../../../hardware/system/hardware_task_control.vhd \
  6. ../../../hardware/system/float_add.vhd \
  7. ../../../hardware/signal_processing/add.vhd \
  8. ../../../hardware/system/task_add.vhd \
  9. ../../../hardware/system/data_channel_control.vhd \
  10. ../../../hardware/system/data_sink_mux.vhd \
  11. ../../../hardware/system/data_source_mux.vhd \
  12. ../../../hardware/system/fifo.vhd \
  13. ../../../hardware/system/data_channel.vhd \
  14. ../test_utility.vhd \
  15. ../test_avalon_slave.vhd \
  16. ../test_hardware_task.vhd \
  17. ../test_data_channel.vhd \
  18. ../../data/sine_cosine.vhd \
  19. ../../data/rand.vhd \
  20. ../../data/add_rand.vhd \
  21. test_task_add_rand.vhd \
  22. main = test_task_add_rand
  23. expected_data = ../../data/add_rand.py
  24. include ../data_tests.mk