potatis/mos6502/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

17 lines
263 B
TOML

[package]
name = "mos6502"
version = "0.1.0"
edition = "2021"
[dependencies]
getch = { version = "0.3.1", optional = true }
common = { path = "../common" }
bitflags = "2.6.0"
[features]
debugger = ["dep:getch"]
std = []
default = ["std"]
[lib]
doctest = false