mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-29 11:49:36 +00:00
3bd4c24ea8
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.
22 lines
560 B
TOML
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" }
|
|
|