diff options
Diffstat (limited to 'src/memory.rs')
-rw-r--r-- | src/memory.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memory.rs b/src/memory.rs index 2e59ff1..226b6c2 100644 --- a/src/memory.rs +++ b/src/memory.rs @@ -89,7 +89,7 @@ pub trait MemoryInterface { } } -pub type SharedMemory<'a> = Rc<RefCell<Box<MemoryInterface + 'a>>>; +pub type SharedMemory<'a> = Rc<RefCell<MemoryInterface + 'a>>; pub trait Mmu { fn translate(&self, address: isa::Address) -> isa::Address; |