summaryrefslogtreecommitdiff
path: root/rtl/core/fetch/prefetch.sv
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/core/fetch/prefetch.sv')
-rw-r--r--rtl/core/fetch/prefetch.sv2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/core/fetch/prefetch.sv b/rtl/core/fetch/prefetch.sv
index b994d8b..3d0eb88 100644
--- a/rtl/core/fetch/prefetch.sv
+++ b/rtl/core/fetch/prefetch.sv
@@ -47,7 +47,7 @@ module core_prefetch
genvar i;
generate
- for(i = 0; i < SIZE - 1; ++i) begin
+ for(i = 0; i < SIZE - 1; ++i) begin: prefetch_slots
always_ff @(posedge clk)
if(flush)
prefetch[i] <= `NOP;