Projektdaten für das ESY1B Praktikum im Sommersemester 2022
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.

Top.sv 825B

123456789101112131415161718192021222324252627282930313233343536
  1. `include "../spi_interface.v"
  2. `include "../fsm/Fsm.sv"
  3. <<<<<<< HEAD
  4. <<<<<<< HEAD
  5. =======
  6. >>>>>>> b8d8341 (Initalized top level design)
  7. =======
  8. `include "../Bus_if/Bus_if.sv"
  9. >>>>>>> c93bdaf (Added bus_if and fsm to top level design)
  10. module Top(
  11. input wire clk
  12. );
  13. // Bus (Interface)
  14. Bus_if bus(.clk(clk));
  15. // SPI Interface
  16. // FSM
  17. <<<<<<< HEAD
  18. >>>>>>> b8d8341 (Initalized top level design)
  19. =======
  20. Fsm fsm(
  21. .clk(clk),
  22. .inAlarmAmpel(bus.AlarmAmpel),
  23. .inDataValid(bus.DataValid),
  24. .inTasteAktiv(bus.TasteAktiv),
  25. .outAlarm_R(bus.Alarm_R),
  26. .outSendData(bus.SendData),
  27. .outTimerEN(bus.TimerEN)
  28. );
  29. >>>>>>> c93bdaf (Added bus_if and fsm to top level design)
  30. // Parallelport
  31. // FRAM-Controller
  32. // Timer
  33. // Ampelsteuerung
  34. endmodule