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 1.1KB

1234567891011121314151617181920212223242526272829
  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/float.vhd \
  6. ../../../hardware/system/hardware_task_control.vhd \
  7. ../../../hardware/system/data_channel_control.vhd \
  8. ../../../hardware/system/data_sink_mux.vhd \
  9. ../../../hardware/system/data_source_mux.vhd \
  10. ../../../hardware/system/fifo.vhd \
  11. ../../../hardware/system/data_channel.vhd \
  12. ../../../hardware/signal_processing/crc.vhd \
  13. ../../../hardware/system/task_crc.vhd \
  14. ../test_utility.vhd \
  15. ../test_avalon_slave.vhd \
  16. ../test_hardware_task.vhd \
  17. ../test_data_channel.vhd \
  18. ../../data/fft.vhd \
  19. ../../data/crc.vhd \
  20. test_task_crc.vhd \
  21. main = test_task_crc
  22. expected_data = ../../data/crc.py
  23. CHECK_RESULTS = true
  24. include ../vhdl.mk