mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-04 15:06:13 +00:00
083f3607ba
I wanted to make this a bit more modular, so it's easier in theory to write external crates that can reuse bits, and selectively compile in bits, such as adding new systems or new cpu implementations
12 lines
259 B
TOML
12 lines
259 B
TOML
[package]
|
|
name = "moa_genesis"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
moa_core = { path = "../../core" }
|
|
moa_peripherals_yamaha = { path = "../../peripherals/yamaha" }
|
|
moa_m68k = { path = "../../cpus/m68k" }
|
|
moa_z80 = { path = "../../cpus/z80" }
|
|
|