Skip to content

Commit

Permalink
Fix blanking
Browse files Browse the repository at this point in the history
  • Loading branch information
mole99 committed Apr 13, 2024
1 parent 073050b commit 4b94f84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tiny_shader_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,11 @@ module tiny_shader_top (

if (capture) begin
rgb_d <= rgb_o;
// Blanking intervall
if (hblank || vblank) begin
rgb_d <= '0;
end
end

// Blanking intervall
if (hblank || vblank) begin
rgb_d <= '0;
end
end
end
Expand Down

0 comments on commit 4b94f84

Please sign in to comment.