From 18f77ef378cf12012151fba77b55f376b30eac25 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 26 Mar 2021 10:35:02 +0100 Subject: [PATCH] cores/video/VideoTerminal: Also do a CLEAR-X after RST-X (Fix issue with lines displayed with previous contents). --- litex/soc/cores/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/cores/video.py b/litex/soc/cores/video.py index 088760420..f1ee4b483 100644 --- a/litex/soc/cores/video.py +++ b/litex/soc/cores/video.py @@ -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),