From 7c09adae9e2710aefccd25b2920ca684c714ef49 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 10 Jan 2025 16:35:12 +0100 Subject: Introduce xa65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- crates/xa65/Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 crates/xa65/Cargo.toml (limited to 'crates/xa65/Cargo.toml') 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à "] + +[dependencies] +anyhow = "^1" +clap = { version = "^4", features = ["derive"] } +rand = "0.8.5" -- cgit v1.2.3