From 8e33ba4499bced747f66ed436211876d220342d6 Mon Sep 17 00:00:00 2001 From: bd Date: Wed, 23 Apr 2025 00:47:24 -0400 Subject: Rename Response.WAIT to READY, delete BLOCKED --- src/if.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/if.cc') diff --git a/src/if.cc b/src/if.cc index 62a105c..5f07ee2 100644 --- a/src/if.cc +++ b/src/if.cc @@ -25,7 +25,7 @@ InstrDTO *IF::advance(Response p) InstrDTO *r = nullptr; this->advance_helper(); - if (this->curr_instr != nullptr && p == WAIT) { + if (this->curr_instr != nullptr && p == READY) { // don't increment PC if the PC was just set by wb if (this->curr_instr->is_squashed != 1) ++this->pc; -- cgit v1.2.3