Major refactor

- CPU is now it's own module
- Memory object is now shared to support mapper chips
- ROM is now stored as `Arc<[u8]>` to support mapper chips
This commit is contained in:
2026-01-24 03:38:42 -06:00
parent b5e1d1a4c3
commit f861f75b21
16 changed files with 3071 additions and 2450 deletions

View File

@@ -1,5 +1,6 @@
use std::num::NonZeroUsize;
#[derive(Debug, Clone)]
pub struct DebugLog {
current: String,
history: Vec<String>,