Begin implementing profiling sessions

This commit is contained in:
2025-08-27 22:49:44 -04:00
parent 3bfdcc9366
commit 7f819d080f
4 changed files with 1055 additions and 6 deletions
+2 -2
View File
@@ -18,12 +18,12 @@ use tracing::{error, warn};
use crate::{
audio::Audio,
emulator::{cart::Cart, shrooms_vb_core::SimEvent},
emulator::cart::Cart,
graphics::TextureSink,
memory::{MemoryRange, MemoryRegion},
};
use shrooms_vb_core::{EXPECTED_FRAME_SIZE, Sim, StopReason};
pub use shrooms_vb_core::{VBKey, VBRegister, VBWatchpointType};
pub use shrooms_vb_core::{SimEvent, VBKey, VBRegister, VBWatchpointType};
mod address_set;
mod cart;