Browse Source

Added bus_if and fsm to top level design

top_level_design
sessleral71711 1 year ago
parent
commit
c93bdaf629
1 changed files with 11 additions and 7 deletions
  1. 11
    7
      Top/Top.sv

+ 11
- 7
Top/Top.sv View File

@@ -1,19 +1,23 @@
`include "../spi_interface.v"
`include "../fsm/Fsm.sv"
<<<<<<< HEAD
=======
>>>>>>> b8d834144be80086a32a76f1769deccce6eaee15
`include "../Bus_if/Bus_if.sv"

module Top(
input wire clk
);
// Bus (Interface)
<<<<<<< HEAD

=======
Bus_if bus(.clk(clk));
// SPI Interface
// FSM
>>>>>>> b8d834144be80086a32a76f1769deccce6eaee15
Fsm fsm(
.clk(clk),
.inAlarmAmpel(bus.AlarmAmpel),
.inDataValid(bus.DataValid),
.inTasteAktiv(bus.TasteAktiv),
.outAlarm_R(bus.Alarm_R),
.outSendData(bus.SendData),
.outTimerEN(bus.TimerEN)
);
// Parallelport
// FRAM-Controller
// Timer

Loading…
Cancel
Save