core/video/VideoS7GTPHDMIPHY: Swap R/B components.

This commit is contained in:
Florent Kermarrec 2022-01-17 18:13:30 +01:00
parent 3d3229fb49
commit 04e9af9fef
1 changed files with 1 additions and 1 deletions

View File

@ -963,7 +963,7 @@ class VideoS7GTPHDMIPHY(Module):
self.comb += cdc.source.ready.eq(1) # No backpressure. self.comb += cdc.source.ready.eq(1) # No backpressure.
# 20:1 Serialization + Differential Signaling. # 20:1 Serialization + Differential Signaling.
c2d = {"r": 2, "g": 1, "b": 0} c2d = {"r": 0, "g": 1, "b": 2}
class GTPPads: class GTPPads:
def __init__(self, p, n): def __init__(self, p, n):
self.p = p self.p = p