rustzx-core 0.16.0

ZX Spectrum emulator core library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Module with ZX Spectrum related things
//! One of core platform-independent modules
pub(crate) mod controller;
pub(crate) mod events;
pub(crate) mod memory;
#[cfg(feature = "embedded-roms")]
pub(crate) mod roms;
pub(crate) mod tape;

pub mod constants;
pub mod joy;
pub mod keys;
pub mod machine;
pub mod mouse;

#[cfg(feature = "sound")]
pub mod sound;
pub mod video;