+ added interface + added CPU, Bus, and memory implementations + implemented a few CPU instructions
17 lines
306 B
TOML
17 lines
306 B
TOML
[package]
|
|
name = "nes_emulator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4.14"
|
|
chrono = "0.4.19"
|
|
fern = "0.6.0"
|
|
winit = "0.24.0"
|
|
mini_gl_fb = "0.9.0"
|
|
bitflags = "1.3.2"
|
|
rusttype = "0.9.2"
|
|
|