tools/litex_sim: Update Video Framebuffer.

This commit is contained in:
Florent Kermarrec 2023-03-10 13:33:55 +01:00
parent 7bd98cf5d9
commit 67e8d77421
1 changed files with 0 additions and 1 deletions

View File

@ -311,7 +311,6 @@ class SimSoC(SoCCore):
video_pads = platform.request("vga") video_pads = platform.request("vga")
self.submodules.videophy = VideoGenericPHY(video_pads) self.submodules.videophy = VideoGenericPHY(video_pads)
self.add_video_framebuffer(phy=self.videophy, timings="640x480@60Hz", format="rgb888") self.add_video_framebuffer(phy=self.videophy, timings="640x480@60Hz", format="rgb888")
self.videophy.comb += video_pads.valid.eq(~self.video_framebuffer.underflow)
# Video Terminal --------------------------------------------------------------------------- # Video Terminal ---------------------------------------------------------------------------
if with_video_terminal: if with_video_terminal: