Change set name accordingly
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Mario Romero 2023-03-20 01:25:14 -03:00
parent 5650fd278b
commit 12b9c76028

View File

@ -24,7 +24,7 @@ module cache_controller #(
typedef struct packed {
logic [TagSize - 1:0] tag;
logic [SetSize - 1:0] addr_set;
logic [SetSize - 1:0] xset;
logic [ByteOffsetSize - 1:0] byte_offset;
} cache_addr_t;
@ -39,7 +39,7 @@ module cache_controller #(
always_comb begin
packed_addr = cache_addr_t'(addr);
set = packed_addr.addr_set;
set = packed_addr.xset;
tag = packed_addr.tag;
state = cache_state_t'({write_enable, populated});