Skip to content

Commit 7b64530

Browse files
committed
Initial commit for the emulator
1 parent 30dd572 commit 7b64530

14 files changed

+1988
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
**/*.rs.bk
2+
**/target
3+
**/debug
4+
5+
.idea
6+
7+
.DS_Store
8+
9+
roms

chip8_core/Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "chip8_core"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
rand = {version="^0.7.3", features = ["wasm-bindgen"]}

0 commit comments

Comments
 (0)