1#![allow(clippy::missing_safety_doc)] 2 3pub mod cpu; 4pub mod fpga; 5 6pub use cpu::emulator::CPUEmulator; 7pub use fpga::emulator::FPGAEmulator;