mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
corelogic/fsm: typo
This commit is contained in:
parent
5f28103769
commit
d47b564fad
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class FSM:
|
|||
name_state = len(self.actions)
|
||||
setattr(self, name, Constant(name_state, self._state_bv))
|
||||
for i in range(delay-1):
|
||||
self.actions.append([self.next_state(Constant(name_state+i+1), self._state_bv)])
|
||||
self.actions.append([self.next_state(Constant(name_state+i+1, self._state_bv))])
|
||||
self.actions.append([self.next_state(target_state)])
|
||||
else:
|
||||
# alias
|
||||
|
|
Loading…
Reference in a new issue