cores/video: Fix missing h/vsync connection in SYNC state.

This commit is contained in:
Florent Kermarrec 2023-11-04 20:55:56 +01:00
parent 71ae8fe828
commit f4e68d78ca
1 changed files with 2 additions and 1 deletions

View File

@ -702,7 +702,8 @@ class VideoFrameBuffer(LiteXModule):
vtg_sink.ready.eq(~fsm.reset),
If(vtg_sink.valid & vtg_sink.last,
NextState("RUN")
)
),
vtg_sink.connect(source, keep={"hsync", "vsync"}),
)
fsm.act("RUN",
vtg_sink.ready.eq(1),