potatis/nes/Cargo.toml
Henrik Persson c7ad54c42a Improve performance a bit.
nestest went from 5s to ~1.9s by:
- removing some dyn dispatch
- const instruction map
- opcode unrolling
- removing uneccessary reads
2024-11-26 13:28:36 +01:00

18 lines
342 B
TOML

[package]
name = "nes"
version = "0.1.0"
edition = "2021"
[dependencies]
bitflags = "1.3.2"
phf = { version = "0.11.1", default-features = false, features = ["macros"] }
common = { path = "../common" }
mos6502 = { path = "../mos6502" }
[features]
std = []
default = ["std", "phf/std"]
debugger = ["mos6502/debugger"]
[lib]
doctest = false