mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
1ddd1ba1cc
commit
145eacc451
1 changed files with 9 additions and 1 deletions
|
@ -167,7 +167,15 @@ module VX_pending_size #(
|
|||
end
|
||||
end
|
||||
|
||||
assign size = {full_r, used_r};
|
||||
if (SIZE > 1) begin : g_sizeN
|
||||
if (SIZEW > ADDRW) begin : g_not_log2
|
||||
assign size = {full_r, used_r};
|
||||
end else begin : g_log2
|
||||
assign size = used_r;
|
||||
end
|
||||
end else begin : g_size1
|
||||
assign size = full_r;
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue