emul8 0.1.2

A simple rust-based toolchain to interoperate and emulate the CHIP-8 architecture
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_use]
extern crate downcast_rs;

pub mod internals {
    pub mod display;
    pub mod keyboard;
    pub mod memory;
    pub mod opcode;
    pub mod processor;
}