ludus 0.2.2

headless NES emulator crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub(crate) mod apu;
pub mod cart;
pub mod console;
pub mod controller;
pub(crate) mod cpu;
pub(crate) mod memory;
pub mod ports;
pub(crate) mod ppu;

pub use cart::{Cart, CartReadingError};
pub use console::Console;
pub use controller::ButtonState;
pub use ports::{AudioDevice, PixelBuffer, VideoDevice, NES_HEIGHT, NES_WIDTH};