diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-10 16:35:12 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-10 16:35:12 +0100 |
| commit | 7c09adae9e2710aefccd25b2920ca684c714ef49 (patch) | |
| tree | 45870865c7700e28d092469ee9d850cc70f3f292 /crates/xa65/Cargo.toml | |
| parent | 343b2a41a36286a5f950116c183cd2ae54aad1bd (diff) | |
| download | tools.nes-7c09adae9e2710aefccd25b2920ca684c714ef49.tar.gz tools.nes-7c09adae9e2710aefccd25b2920ca684c714ef49.zip | |
Introduce xa65
This is a bridge between 'nasm' and 'cl65'. That is, it runs the same
command on both 'nasm' and 'cl65', compares the resulting binaries, and
gives back the binary from 'cl65'.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'crates/xa65/Cargo.toml')
| -rw-r--r-- | crates/xa65/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/crates/xa65/Cargo.toml b/crates/xa65/Cargo.toml new file mode 100644 index 0000000..f268943 --- /dev/null +++ b/crates/xa65/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "xa65" +version = "0.1.0" +edition = "2021" +authors = ["Miquel Sabaté Solà <mikisabate@gmail.com>"] + +[dependencies] +anyhow = "^1" +clap = { version = "^4", features = ["derive"] } +rand = "0.8.5" |
