faster memory impl

This commit is contained in:
2026-03-03 17:19:07 +00:00
parent ebb9489410
commit 1672732431
10 changed files with 1088 additions and 33 deletions
+12
View File
@@ -0,0 +1,12 @@
#![feature(likely_unlikely)]
#![feature(ptr_as_ref_unchecked)]
mod memory;
mod processor;
pub use {
memory::MemoryMap,
memory::mainstore::{FastStore, MainStore, RandomAccessMemory},
processor::processor::Emulator,
processor::state::SharedState,
};