diff options
author | James McKenzie <root@ka-ata-killa.panaceas.james.local> | 2025-09-05 23:02:06 +0100 |
---|---|---|
committer | James McKenzie <root@ka-ata-killa.panaceas.james.local> | 2025-09-05 23:02:06 +0100 |
commit | e26607065f26b6bc3705b4ab80c2bdf101f4f3b6 (patch) | |
tree | 6733a2d4eea45e9c5c981aa258c0c2bfd268a1a3 /fpga/hp_lcd_driver/tmds_phy_artix7.vhdl | |
parent | e2735e4f414816985e351fb151548b379dd72c0e (diff) | |
download | hp_instrument_lcds-master.tar.gz hp_instrument_lcds-master.tar.bz2 hp_instrument_lcds-master.zip |
Diffstat (limited to 'fpga/hp_lcd_driver/tmds_phy_artix7.vhdl')
-rw-r--r-- | fpga/hp_lcd_driver/tmds_phy_artix7.vhdl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fpga/hp_lcd_driver/tmds_phy_artix7.vhdl b/fpga/hp_lcd_driver/tmds_phy_artix7.vhdl index 26f29c0..604ec23 100644 --- a/fpga/hp_lcd_driver/tmds_phy_artix7.vhdl +++ b/fpga/hp_lcd_driver/tmds_phy_artix7.vhdl @@ -22,6 +22,7 @@ end tmds_phy_artix7; architecture beh of tmds_phy_artix7 is signal ld : std_logic_vector(9 downto 0); + signal ld2 : std_logic_vector(9 downto 0); signal sr : std_logic_vector(9 downto 0); signal s : std_logic; @@ -32,7 +33,7 @@ begin process(pix_clk) begin if rising_edge(pix_clk) then - ld <= din; + ld2 <= din; end if; end process; @@ -69,9 +70,9 @@ begin process(phy_clk) begin if rising_edge(phy_clk) then --- if b=5 then --- ld2<=ld; --- end if; + if b=5 then + ld<=ld2; + end if; if b = 0 then sr <= ld; else |