From 29d99e7110d2699d5f8010a750f09349fe657098 Mon Sep 17 00:00:00 2001 From: David Banks Date: Tue, 25 Apr 2017 10:06:38 +0100 Subject: [PATCH] VHDL: Adjust count when quad loaded Change-Id: Ieaf096aa6ffb574e470564ca70602ee92bde57ce --- vhdl/RGBtoHDMI.vhdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vhdl/RGBtoHDMI.vhdl b/vhdl/RGBtoHDMI.vhdl index 599e180e..e0e34f6b 100644 --- a/vhdl/RGBtoHDMI.vhdl +++ b/vhdl/RGBtoHDMI.vhdl @@ -97,7 +97,7 @@ begin if counter(10) = '0' then if counter(1 downto 0) = "11" then shift <= B & G & R & shift(11 downto 3); - if counter(3 downto 2) = "11" then + if counter(3 downto 2) = "00" then quad <= shift; psync <= counter(4); end if;