mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #843 from gregdavill/monitor_token_fix
cores/stream/monitor: Fix typo
This commit is contained in:
commit
ee2d373477
1 changed files with 1 additions and 1 deletions
|
@ -648,7 +648,7 @@ class Monitor(Module, AutoCSR):
|
|||
|
||||
# Tokens Count -----------------------------------------------------------------------------
|
||||
if with_tokens:
|
||||
tokens_counter = MonitorCounter(reset, latch, endpoint.valid & endpoint.ready, self.tokens.status)
|
||||
token_counter = MonitorCounter(reset, latch, endpoint.valid & endpoint.ready, self.tokens.status)
|
||||
self.submodules += token_counter
|
||||
|
||||
# Overflows Count (only useful when endpoint is expected to always be ready) ---------------
|
||||
|
|
Loading…
Reference in a new issue