moa/emulator/frontends/minifb/Cargo.toml
transistor 3bd4c24ea8 Modified debugger so the input is in the frontend
The debug loop that reads a command and does something is part of the
frontend's main loop, so that it can potentially update, even though
it doesn't actually work for minifb because the command input is a
blocking call.  It's also not implemented in the pixels frontend.
At some point I'll make a web frontend.
2023-06-10 15:28:21 -07:00

22 lines
560 B
TOML

[package]
name = "moa_minifb"
version = "0.1.0"
edition = "2021"
default-run = "moa-genesis"
[dependencies]
log = "0.4"
minifb = "^0.19"
clap = "^4"
simple_logger = "^2"
moa_core = { path = "../../core" }
moa_common = { path = "../common", features = ["audio"] }
moa_systems_genesis = { path = "../../systems/genesis" }
moa_systems_computie = { path = "../../systems/computie" }
moa_systems_trs80 = { path = "../../systems/trs80" }
moa_systems_macintosh = { path = "../../systems/macintosh" }
moa_peripherals_yamaha = { path = "../../peripherals/yamaha" }