minor update
This commit is contained in:
9
hw/rtl/cache/VX_fill_invalidator.v
vendored
9
hw/rtl/cache/VX_fill_invalidator.v
vendored
@@ -10,12 +10,9 @@ module VX_fill_invalidator #(
|
||||
) (
|
||||
input wire clk,
|
||||
input wire reset,
|
||||
|
||||
input wire possible_fill,
|
||||
input wire success_fill,
|
||||
|
||||
input wire[`LINE_ADDR_WIDTH-1:0] fill_addr,
|
||||
|
||||
output reg invalidate_fill
|
||||
);
|
||||
|
||||
@@ -23,6 +20,12 @@ module VX_fill_invalidator #(
|
||||
|
||||
assign invalidate_fill = 0;
|
||||
|
||||
`UNUSED_VAR (clk)
|
||||
`UNUSED_VAR (reset)
|
||||
`UNUSED_VAR (possible_fill)
|
||||
`UNUSED_VAR (success_fill)
|
||||
`UNUSED_VAR (fill_addr)
|
||||
|
||||
end else begin
|
||||
|
||||
reg [FILL_INVALIDAOR_SIZE-1:0] fills_active;
|
||||
|
||||
Reference in New Issue
Block a user