soc/cores/cpu/minerva: add self.reset to i_rst

This commit is contained in:
Florent Kermarrec 2019-12-13 23:44:07 +01:00
parent 8b6f9e0a2c
commit c34255d2ab
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class Minerva(CPU):
self.cpu_params = dict(
# clock / reset
i_clk=ClockSignal(),
i_rst=ResetSignal(),
i_rst=ResetSignal() | self.reset,
# interrupts
i_timer_interrupt = 0,