chip8-rs

ci build status crate version docs crate license

Example

```rust,skt-instruction-decode use chip_8::instructions::{Instruction, VRegister::VA};

let decoded_instruction = Instruction::decode(0xCAFE)?;

asserteq!(decodedinstruction, Instruction::Random(VA, 0xFE)); ```

Usage

Add a dependency to your Cargo.toml (see The Cargo Book):

toml [dependencies] chip_8 = "0.2.0"

License

chip8-rs is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

SPDX-License-Identifier: MIT OR Apache-2.0

See LICENSE-APACHE and LICENSE-MIT, and COPYRIGHT for details.