core: remove reset on scope clk

This commit is contained in:
Florent Kermarrec 2019-11-22 19:34:07 +01:00
parent 1448b55819
commit bbc98b4404
1 changed files with 1 additions and 4 deletions

View File

@ -246,10 +246,7 @@ class LiteScopeAnalyzer(Module, AutoCSR):
# create scope clock domain
self.clock_domains.cd_scope = ClockDomain()
self.comb += [
self.cd_scope.clk.eq(ClockSignal(clock_domain)),
self.cd_scope.rst.eq(ResetSignal(clock_domain))
]
self.comb += self.cd_scope.clk.eq(ClockSignal(clock_domain))
# mux
self.submodules.mux = _Mux(data_width, len(groups))