mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-22 10:32:59 +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
11 lines
277 B
TOML
11 lines
277 B
TOML
[package]
|
|
name = "moa_macintosh"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
moa_core = { path = "../../core" }
|
|
moa_m68k = { path = "../../cpus/m68k" }
|
|
moa_peripherals_mos = { path = "../../peripherals/mos" }
|
|
moa_peripherals_zilog = { path = "../../peripherals/zilog" }
|