moa/emulator/systems/trs80/src/lib.rs
transistor 083f3607ba Major reorganization into crates
I wanted to make this a bit more modular, so it's easier in theory to
write external crates that can reuse bits, and selectively compile in
bits, such as adding new systems or new cpu implementations
2022-09-24 23:14:03 -07:00

7 lines
88 B
Rust

pub mod peripherals;
mod system;
pub use crate::system::{Trs80Options, build_trs80};