mirror of
https://github.com/JanNeuendorf/SVC16.git
synced 2025-06-04 18:45:27 +00:00

* Included utility buffer in sketch and reworked it. * Included the new buffer and instruction changes in the README. * Implemented the new buffer in the emulator * Made the buffer clear since no expansion is active * Added the new buffer and expansion card to the specification document * Used more consistent wording and added expandability to the goals. Added more examples for expansions.
19 lines
534 B
TOML
19 lines
534 B
TOML
[package]
|
|
name = "svc16"
|
|
version = "0.6.0"
|
|
edition = "2021"
|
|
authors = ["Jan Neuendorf"]
|
|
description = "An emulator for a simple virtual computer"
|
|
license="MIT"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.93"
|
|
clap = { version = "4.5.21", features = ["derive"] }
|
|
gilrs = { version = "0.11.0"}
|
|
# There seems to be some incompatibility with the latest crates.io version of pixels?
|
|
pixels = { git = "https://github.com/parasyte/pixels.git", rev = "d4df286"}
|
|
thiserror = "2.0.3"
|
|
winit = "0.29.15"
|
|
winit-input-map = "0.4.1"
|
|
winit_input_helper = "0.16.0"
|