From 0e4b5cbc25e27ccb8e7a1bebf08111c0f5e9bebe Mon Sep 17 00:00:00 2001 From: Daniel Lustig Date: Mon, 7 Jun 2021 16:18:17 -0400 Subject: PTE N bit moved from bit 62 to bit 63 (#724) --- riscv/encoding.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'riscv/encoding.h') diff --git a/riscv/encoding.h b/riscv/encoding.h index ebd401c..dfc3b75 100644 --- a/riscv/encoding.h +++ b/riscv/encoding.h @@ -221,7 +221,7 @@ #define PTE_A 0x040 /* Accessed */ #define PTE_D 0x080 /* Dirty */ #define PTE_SOFT 0x300 /* Reserved for Software */ -#define PTE_N 0x4000000000000000 /* Svnapot: NAPOT translation contiguity */ +#define PTE_N 0x8000000000000000 /* Svnapot: NAPOT translation contiguity */ #define PTE_PPN_SHIFT 10 -- cgit v1.1