Compare commits

...

1 commit

Author SHA1 Message Date
Erin be27a84c10 ASUnrbfPWIED FUZBERPGIHBN 2023-08-13 22:37:09 +02:00

View file

@ -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},