moa/src/cpus/m68k/mod.rs

13 lines
182 B
Rust
Raw Normal View History

pub mod state;
pub mod decode;
pub mod execute;
pub mod debugger;
pub mod instructions;
2021-12-15 05:13:01 +00:00
pub mod timing;
pub mod tests;
2021-12-15 05:13:01 +00:00
//pub mod testcases;
pub use self::state::{M68k, M68kType};