//! Game Boy Advance debugging support.
//!
//! Provides ARM7TDMI disassembly, breakpoint management, and CPU execution
//! tracing for the native desktop frontend. The whole module is gated with
//! `#[cfg(not(target_arch = "wasm32"))]` in `src/gba/mod.rs` so WASM builds
//! do not reference any of these symbols (satisfying the WASM-build
//! acceptance criterion of issue #2218).
//!
//! See [`disasm`] for instruction formatting, [`breakpoints`] for the
//! address-breakpoint set, and [`trace`] for the execution ring buffer.
//! [`controller::GbaDebuggerController`] glues them together for the
//! upcoming debugger UI.
pub use Breakpoints;
pub use ;
pub use ;
pub use ;