Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mole99 committed Apr 13, 2024
1 parent f16f31e commit 3119190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tiny_shader_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ module tiny_shader_top (

always_ff @(posedge clk_i, negedge rst_ni) begin
if (!rst_ni) begin
x_subpos = '0;
y_subpos = '0;
x_subpos <= '0;
y_subpos <= '0;
end else begin
if (execute_shader_x || x_subpos > 0) begin
// X sub position
Expand Down

0 comments on commit 3119190

Please sign in to comment.