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.2KB

123456789101112131415161718192021222324252627282930
  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/system/cordic_pkg.vhd \
  13. ../../../hardware/system/cordic.vhd \
  14. ../../../hardware/system/fixed_sine.vhd \
  15. ../../../hardware/system/float_sine.vhd \
  16. ../../../hardware/signal_processing/sine.vhd \
  17. ../../../hardware/system/task_sine.vhd \
  18. ../test_utility.vhd \
  19. ../test_avalon_slave.vhd \
  20. ../test_hardware_task.vhd \
  21. ../test_data_channel.vhd \
  22. ../../data/sine.vhd \
  23. test_task_sine.vhd \
  24. main = test_task_sine
  25. expected_data = ../../data/sine.py
  26. include ../data_tests.mk