moa/emulator/cpus/m68k/src/lib.rs

16 lines
300 B
Rust

pub mod assembler;
pub mod debugger;
pub mod decode;
pub mod execute;
pub mod instructions;
pub mod memory;
pub mod state;
pub mod tests;
pub mod timing;
#[cfg(feature = "moa")]
pub mod moa;
pub use crate::state::{M68k, M68kType, M68kError};
pub use crate::memory::{M68kAddress, M68kAddressSpace};