From 352597c4cf2ad4712dabec0234fb22419ccc6bbc Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Mon, 28 Jul 2025 20:10:34 -0700 Subject: [PATCH] Remove MAX_PADDR_BITS It isn't used anymore. --- riscv/mmu.h | 1 - 1 file changed, 1 deletion(-) diff --git a/riscv/mmu.h b/riscv/mmu.h index 94f3a97f..48340cfa 100644 --- a/riscv/mmu.h +++ b/riscv/mmu.h @@ -18,7 +18,6 @@ // virtual memory configuration #define PGSHIFT 12 const reg_t PGSIZE = 1 << PGSHIFT; -#define MAX_PADDR_BITS 64 // observability hooks for load, store and fetch // intentionally empty not to cause runtime overhead