Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robo9k/chip8-rs
CHIP-8 virtual machine / emulator
https://github.com/robo9k/chip8-rs
chip-8 chip8 emulator interpreter rust virtual-machine
Last synced: 1 day ago
JSON representation
CHIP-8 virtual machine / emulator
- Host: GitHub
- URL: https://github.com/robo9k/chip8-rs
- Owner: robo9k
- License: other
- Created: 2018-10-21T12:25:45.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-12-02T23:21:15.000Z (about 3 years ago)
- Last Synced: 2025-01-31T07:05:18.751Z (3 days ago)
- Topics: chip-8, chip8, emulator, interpreter, rust, virtual-machine
- Language: Rust
- Homepage: https://robo9k.github.io/chip8-rs/
- Size: 3.11 MB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
[//]: # (README)
# chip8-rs
…
[![ci build status](https://github.com/robo9k/chip8-rs/workflows/test/badge.svg)](https://github.com/robo9k/chip8-rs/actions?query=workflow%3Atest)
[![crate version](https://img.shields.io/crates/v/chip_8)](https://crates.io/crates/chip_8)
[![docs](https://docs.rs/chip_8/badge.svg)](https://docs.rs/chip_8)
[![crate license](https://img.shields.io/crates/l/chip_8)](https://github.com/robo9k/chip8-rs/blob/main/COPYRIGHT)
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
[![codecov](https://codecov.io/gh/robo9k/chip8-rs/branch/main/graph/badge.svg)](https://codecov.io/gh/robo9k/chip8-rs)## Usage
Add a dependency to your `Cargo.toml` (see [The Cargo Book](https://doc.rust-lang.org/cargo/guide/dependencies.html#adding-a-dependency)):
```toml
[dependencies]
chip_8 = "0.3.1"
```# 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](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT), and [COPYRIGHT](COPYRIGHT) for details.