cge_nes 0.1.2

Cycle-accurate NES (Nintendo Entertainment System) emulator library: CPU, PPU, cartridge, input, and iNES ROM loading.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Palette module exposing color types and the palette RAM device.
//!
//! Provides color representations, emphasis flags and the palette RAM model used
//! by the PPU for background and sprite color lookups.
mod color;
mod ram;

pub use color::Color;
pub use color::EmphasisFlags;
pub use ram::PaletteColorIndex;
pub use ram::Ram;