1 2 3 4 5 6 7 8 9 10 11 12 13
//! An emulator for the i8051 microcontroller. //! //! See the [`mod@ops`] module for a list of all supportedinstructions. mod cpu; pub mod memory; mod regs; pub mod sfr; pub use cpu::Cpu; pub use cpu::MemoryMapper; pub use cpu::PortMapper; pub use cpu::ops;