//! GDB target implementations split by architecture.
//!
//! This module keeps the shared GDB target support small while placing the
//! x86_64, x86, and aarch64 implementations in separate files.
pub use MwemuTargetAarch64;
pub use MwemuTarget32;
pub use MwemuTarget64;
/// Error type for GDB target operations
;