From 520b09a6edabbe2fec7750b6492541038bd34870 Mon Sep 17 00:00:00 2001 From: Jonathan Woodruff Date: Thu, 7 Oct 2021 16:16:27 +0000 Subject: [PATCH] Use less wierd default value. --- src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv b/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv index 4b7e306..4a6c132 100644 --- a/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv +++ b/src_Core/RISCY_OOO/procs/RV64G_OOO/FetchStage.bsv @@ -746,7 +746,7 @@ module mkFetchStage(FetchStage); end end else if (!isValid(nextPc)) begin // A Jr will jump; if we don't have a record, we should wait to prevent wasted work. - nextPc = Valid (-1); // Dummy value to prevent progress. + nextPc = Valid (0); // Dummy value to prevent progress. end end