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

22 lines
703 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::assembler::M68kAssembler;
pub use crate::debugger::M68kDebugger;
pub use crate::state::{M68k, M68kType, M68kState, M68kError, CpuInfo, Exceptions};
pub use crate::memory::{M68kAddress, M68kAddressSpace, M68kBusPort};
pub use crate::decode::{M68kDecoder, InstructionDecoding};
pub use crate::execute::{M68kCycle, M68kCycleExecutor};
pub use crate::timing::M68kInstructionTiming;
//pub use crate::instructions::{Instruction, Target, Size, Sign, XRegister, BaseRegister, IndexRegister, Direction};