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
54e6421854
commit
047960ac4d
1 changed files with 4 additions and 4 deletions
8
hw/rtl/cache/VX_bank_flush.sv
vendored
8
hw/rtl/cache/VX_bank_flush.sv
vendored
|
@ -37,11 +37,11 @@ module VX_bank_flush #(
|
|||
input wire mshr_empty
|
||||
);
|
||||
// ways interation is only needed when eviction is enabled
|
||||
parameter CTR_WIDTH = `CS_LINE_SEL_BITS + (WRITEBACK ? `CS_WAY_SEL_BITS : 0);
|
||||
localparam CTR_WIDTH = `CS_LINE_SEL_BITS + (WRITEBACK ? `CS_WAY_SEL_BITS : 0);
|
||||
|
||||
parameter STATE_IDLE = 2'd0;
|
||||
parameter STATE_INIT = 2'd1;
|
||||
parameter STATE_FLUSH = 2'd2;
|
||||
localparam STATE_IDLE = 2'd0;
|
||||
localparam STATE_INIT = 2'd1;
|
||||
localparam STATE_FLUSH = 2'd2;
|
||||
|
||||
reg [CTR_WIDTH-1:0] counter_r;
|
||||
reg [1:0] state_r, state_n;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue