+ end else begin
+ bus_req = 0;
+ bus_addr = 0;
+ bus_rd = 0;
+ end
+
+ always @(posedge clk)
+ if (rd_req && !cache_hit) begin
+ if (bus_ready) begin /* Started the fill, and we have data. */
+ cache_data[rd_idx][cache_fill_pos] = bus_data;
+ cache_fill_pos <= cache_fill_pos + 1;
+ if ((cache_fill_pos + 1) == 0) begin /* Done? */
+ cache_tags[rd_idx] = rd_tag;
+ cache_valid[rd_idx] = 1;
+ end
+ end