[package] name = "ssbc" version = "0.1.0" authors = ["Magnus Larsen "] edition = "2018" description = "An SSBC Interpreter written in Rust. See http://csci.viu.ca/~pwalsh/teaching/261/261/261.html" documentation = "https://docs.rs/ssbc" readme = "README.md" repository = "https://github.com/Nopey/ssbc-rs" license = "MIT OR Apache-2.0" keywords = ["interpreter", "toy", "language", "asm", "assembly"] categories = ["command-line-utilities", "development-tools::debugging", "emulators"] [dependencies] derive_more = "0.99.11" [features] # Matches the CSCI 335 SSBC's behavior by default (twos complement). # Enabling this feature match the CSCI 261 SSBC's behavior. signedmagnitude_sub = []