corelogic/ReorderBuffer: do not touch empty count when issuing and reading at the same time
This commit is contained in:
parent
8de192dfbd
commit
30f1e77c18
|
@ -77,4 +77,11 @@ class ReorderBuffer:
|
|||
)
|
||||
]
|
||||
|
||||
# do not touch empty count when issuing and reading at the same time
|
||||
sync += [
|
||||
If(self.issue & self.can_issue & self.read & self.can_read,
|
||||
self._empty_count.eq(self._empty_count)
|
||||
)
|
||||
]
|
||||
|
||||
return Fragment(comb, sync)
|
Loading…
Reference in New Issue