chip8_vm 0.0.3

Virtual machine for the CHIP-8 programming language
docs.rs failed to build chip8_vm-0.0.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: chip8_vm-0.4.0

Virtual machine for the CHIP-8 programming language

This crate implements a virtual machine for the CHIP-8 programming language. It can be used as a backend for CHIP-8 emulators, debuggers and so on.

The code is split into the instructions module, which provides the translation from raw bits (RawInstruction) into valid instructions (Instruction).

The vm module contains the actual virtual machine implementation (Vm) and a few shared constants.

The error module contains the Chip8Error implementation of std:error::Error for any kinds of errors that might occur using the chip8_vm crate.