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
17 lines
263 B
TOML
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
|