tetanes 0.14.0

A cross-platform NES Emulator written in Rust using wgpu
1
2
3
4
5
pub type Error = anyhow::Error;
pub type Result<T, E = Error> = anyhow::Result<T, E>;

pub use Error as NesError;
pub use Result as NesResult;