Skip to content

Commit

Permalink
run @80MHz, 44.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Bohan-hu committed Aug 10, 2020
1 parent ee087cf commit 9078ec4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/sources_1/new/LSU/read_buffer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module read_buffer(
for(l = 0; l < 16; l = l + 1)
if(valids[j])
cnt = cnt + 1;
lsu2rb.half = cnt >= 8;
lsu2rb.half = cnt >= 6;
end

assign lsu2rb.busy = (rbuffer[avail].valid == 1'b1) | lsu2rb.flush;
Expand Down
2 changes: 1 addition & 1 deletion source/sources_1/new/LSU/write_buffer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module write_buffer(
for(j = 0; j < 16; j = j + 1)
if(wbuffer[j].valid)
cnt = cnt + 1;
lsu2wb.half = cnt >= 8;
lsu2wb.half = cnt >= 6;
end

always_ff @(posedge g.clk)
Expand Down

0 comments on commit 9078ec4

Please sign in to comment.