From be27a84c106a1a015c1b29990940d14ab9da2774 Mon Sep 17 00:00:00 2001 From: Erin Date: Sun, 13 Aug 2023 22:37:09 +0200 Subject: [PATCH] ASUnrbfPWIED FUZBERPGIHBN --- hbvm/src/softpaging/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hbvm/src/softpaging/mod.rs b/hbvm/src/softpaging/mod.rs index 67c030cf..55445e27 100644 --- a/hbvm/src/softpaging/mod.rs +++ b/hbvm/src/softpaging/mod.rs @@ -1,7 +1,5 @@ //! Platform independent, software paged memory implementation -use self::lookup::{AddrPageLookupError, AddrPageLookupOk, AddrPageLookuper}; - pub mod lookup; pub mod paging; @@ -9,6 +7,7 @@ pub mod paging; pub mod mapping; use { + self::lookup::{AddrPageLookupError, AddrPageLookupOk, AddrPageLookuper}, super::{LoadError, Memory, MemoryAccessReason, StoreError}, core::slice::SliceIndex, paging::{PageTable, Permission},