From 22e4f82a9983a17e435deafd11deee5382330ee9 Mon Sep 17 00:00:00 2001 From: David Harris Date: Fri, 28 Apr 2023 07:52:08 -0700 Subject: [PATCH] Commenting --- src/mmu/hptw.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mmu/hptw.sv b/src/mmu/hptw.sv index f90e42ce..2cc76e8f 100644 --- a/src/mmu/hptw.sv +++ b/src/mmu/hptw.sv @@ -175,7 +175,7 @@ module hptw ( .SV39Mode(), .UpperBitsUnequal); assign InvalidRead = ReadAccess & ~Readable & (~STATUS_MXR | ~Executable); assign InvalidWrite = WriteAccess & ~Writable; - assign InvalidOp = DTLBWalk ? (InvalidRead | InvalidWrite) : ~Executable; + assign InvalidOp = DTLBWalk ? (InvalidRead | InvalidWrite) : ~Executable; assign OtherPageFault = ImproperPrivilege | InvalidOp | UpperBitsUnequal | Misaligned | ~Valid; // hptw needs to know if there is a Dirty or Access fault occuring on this