Skip to content

Commit

Permalink
Initial commit of in-progress chip8 emulator
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanisaacg committed Apr 13, 2023
0 parents commit dfa7739
Show file tree
Hide file tree
Showing 6 changed files with 570 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
*.ch8
133 changes: 133 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "crunch"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rand = "0.8.5"
sdl2 = { version = "0.35.2", features = ["bundled"] }

[lib]
name = "crunch"
path = "src/lib.rs"

[[bin]]
name = "crunch"
path = "src/main.rs"
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Crunch

A Rust-based emulator for CHIP-8

Loading

0 comments on commit dfa7739

Please sign in to comment.