mirror of
https://github.com/henrikpersson/potatis.git
synced 2025-04-02 10:32:09 -04:00
nestest went from 5s to ~1.9s by: - removing some dyn dispatch - const instruction map - opcode unrolling - removing uneccessary reads
18 lines
342 B
TOML
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
|