Skip to content

Commit

Permalink
Change to 8s to be more forgiving for more displays.
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesLove committed Feb 2, 2022
1 parent 47be8c1 commit 79691b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtl/gpu_videoout.vhd
Expand Up @@ -287,8 +287,8 @@ begin
else
video_hblank <= '1';
if (video_hblank = '0') then
hsync_start <= (nextHCount / 2) + (26 * clkDiv) - (12 * clkDiv);
hsync_end <= (nextHCount / 2) + (2 * clkDiv) - (4 * clkDiv);
hsync_start <= (nextHCount / 2) + (26 * clkDiv) - (8 * clkDiv);
hsync_end <= (nextHCount / 2) + (2 * clkDiv) - (8 * clkDiv);
end if;
end if;
end if;
Expand Down

0 comments on commit 79691b2

Please sign in to comment.