From b9e099d53c08d2a00f5de1f82752a574890e9129 Mon Sep 17 00:00:00 2001 From: Thomas Fleming Date: Fri, 14 May 2021 08:06:07 -0400 Subject: [PATCH] Fix comment --- wally-pipelined/src/mmu/pagetablewalker.sv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wally-pipelined/src/mmu/pagetablewalker.sv b/wally-pipelined/src/mmu/pagetablewalker.sv index c548c1f18..f2aada444 100644 --- a/wally-pipelined/src/mmu/pagetablewalker.sv +++ b/wally-pipelined/src/mmu/pagetablewalker.sv @@ -130,7 +130,7 @@ module pagetablewalker ( // access bit. The following commented line of code is // supposed to perform that check. However, it is untested. else if (ValidPTE && LeafPTE && ~BadMegapage) NextWalkerState = LEAF; - // else if (ValidPTE && LeafPTE) NextWalkerState = LEAF; // *** If you test the above line, delete this line + // else if (ValidPTE && LeafPTE) NextWalkerState = LEAF; // *** Once the above line is properly tested, delete this line. else if (ValidPTE && ~LeafPTE) NextWalkerState = LEVEL0; else NextWalkerState = FAULT; LEVEL0: if (~MMUReady) NextWalkerState = LEVEL0; @@ -226,7 +226,7 @@ module pagetablewalker ( // access bit. The following commented line of code is // supposed to perform that check. However, it is untested. else if (ValidPTE && LeafPTE && ~BadGigapage) NextWalkerState = LEAF; - // else if (ValidPTE && LeafPTE) NextWalkerState = LEAF; // *** If you test the above line, delete this line + // else if (ValidPTE && LeafPTE) NextWalkerState = LEAF; // *** Once the above line is properly tested, delete this line. else if (ValidPTE && ~LeafPTE) NextWalkerState = LEVEL1; else NextWalkerState = FAULT; LEVEL1: if (~MMUReady) NextWalkerState = LEVEL1; @@ -235,7 +235,7 @@ module pagetablewalker ( // access bit. The following commented line of code is // supposed to perform that check. However, it is untested. else if (ValidPTE && LeafPTE && ~BadMegapage) NextWalkerState = LEAF; - // else if (ValidPTE && LeafPTE) NextWalkerState = LEAF; // *** If you test the above line, delete this line + // else if (ValidPTE && LeafPTE) NextWalkerState = LEAF; // *** Once the above line is properly tested, delete this line. else if (ValidPTE && ~LeafPTE) NextWalkerState = LEVEL0; else NextWalkerState = FAULT; LEVEL0: if (~MMUReady) NextWalkerState = LEVEL0;