summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-11-21 17:55:30 -0600
committerAlejandro Soto <alejandro@34project.org>2023-11-21 18:03:15 -0600
commit72f73c895e25f29d450de4da3deccb3fd0634c97 (patch)
tree526bdf558c67cda9d6861e41e7fbf423718c4254
parentd2df92448a7aaaff9ae72f99bf4bcd00a6e55d8c (diff)
rtl/gfx: fix lane mask in SP batch
-rw-r--r--rtl/gfx/gfx_sp_batch.sv2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/gfx/gfx_sp_batch.sv b/rtl/gfx/gfx_sp_batch.sv
index b999219..3d566ab 100644
--- a/rtl/gfx/gfx_sp_batch.sv
+++ b/rtl/gfx/gfx_sp_batch.sv
@@ -90,7 +90,7 @@ module gfx_sp_batch
2'b11: fifo_in.mask = 4'b0111;
endcase
- if (read_block_count == 0)
+ if (read_block_count != 0)
fifo_in.mask = 4'b1111;
end