mirror of
https://github.com/enjoy-digital/litescope.git
synced 2025-01-04 09:52:27 -05:00
core: remove reset on scope clk
This commit is contained in:
parent
1448b55819
commit
bbc98b4404
1 changed files with 1 additions and 4 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue