From 6b40b026e51eb975cb27abac38858f49fd360c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Escudero-Sahuquillo?= Date: Sat, 4 Oct 2025 08:30:50 +0200 Subject: [PATCH 1/2] Fixed number of ways (never can be zero) and modified 'sets:' label in cache tab --- src/cachesim/cacheconfigwidget.ui | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cachesim/cacheconfigwidget.ui b/src/cachesim/cacheconfigwidget.ui index ddcbf5a8..b7a4aa61 100644 --- a/src/cachesim/cacheconfigwidget.ui +++ b/src/cachesim/cacheconfigwidget.ui @@ -89,7 +89,7 @@ - <html><head/><body><p>2<span style=" vertical-align:super;">N</span> Lines:</p></body></html> + <html><head/><body><p>2<span style=" vertical-align:super;">N</span> Sets:</p></body></html> @@ -154,6 +154,9 @@ 0 + + 1 + 32 From 0d03ac94c458bb3c514f8378d263ffa4b384a3e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Escudero-Sahuquillo?= Date: Mon, 6 Oct 2025 10:15:48 +0200 Subject: [PATCH 2/2] Change processor label description 'segmented' by 'pipelined' --- src/processorregistry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processorregistry.h b/src/processorregistry.h index e150c0a8..9679742d 100644 --- a/src/processorregistry.h +++ b/src/processorregistry.h @@ -83,7 +83,7 @@ const static std::map DatapathNames = { {DatapathType::SS, "Single-stage"}, {DatapathType::M_5S1, "Five-stage multicycle (single memory)"}, {DatapathType::M_5S2, "Five-stage multicycle (separate memories)"}, - {DatapathType::P_5S, "Five-stage segmented"}, + {DatapathType::P_5S, "Five-stage pipelined"}, {DatapathType::P_6SD, "Six-stage dual-issue superscalar"}}; enum BranchStrategy { N_A, PNT, DB };