boytacean 0.12.1

A Game Boy emulator that is written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Implementation of multiple devices using serial transfer (Link Cable) .
//!
//! Some of the devices are purely virtual and are used for testing purposes
//! (eg: [`buffer`] and [`buffer`]) while others emulate physical devices that can be connected
//! to the Game Boy (eg: [`printer`]).

pub mod buffer;
pub mod printer;
pub mod stdout;