Skip to content

Commit

Permalink
cores/video: Fix missing h/vsync connection in SYNC state.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Nov 4, 2023
1 parent 71ae8fe commit f4e68d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion litex/soc/cores/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,8 @@ def __init__(self, dram_port, hres=800, vres=600, base=0x00000000, fifo_depth=65
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),
Expand Down

0 comments on commit f4e68d7

Please sign in to comment.