Skip to content

Commit

Permalink
swap b & r for newer Litex/HDMI
Browse files Browse the repository at this point in the history
  • Loading branch information
rdolbeau committed Nov 4, 2022
1 parent c7d1176 commit 3423585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions goblin_fb.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ def __init__(self, dram_port, upd_clut_fifo = None, hres=800, vres=600, base=0x0
source.vsync.eq(source_out_vsync),
source.valid.eq(source_out_valid),
#source_out_ready.eq(source.ready), # ready flow the other way
source.r.eq(source_out_r),
source.r.eq(source_out_b), # something got swapped at some point...
source.g.eq(source_out_g),
source.b.eq(source_out_b),
source.b.eq(source_out_r),
]

# Underflow.
Expand Down

0 comments on commit 3423585

Please sign in to comment.