mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
cores/video/VideoTerminal: Also do a CLEAR-X after RST-X (Fix issue with lines displayed with previous contents).
This commit is contained in:
parent
438eec0268
commit
18f77ef378
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ class VideoTerminal(Module):
|
|||
)
|
||||
uart_fsm.act("RST-X",
|
||||
NextValue(x_term, 0),
|
||||
NextState("IDLE")
|
||||
NextState("CLEAR-X")
|
||||
)
|
||||
uart_fsm.act("INCR-X",
|
||||
NextValue(x_term, x_term + 1),
|
||||
|
|
Loading…
Reference in a new issue