diff options
| author | Joe Rozner <joe@deadbytes.net> | 2024-08-20 21:55:05 -0700 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2024-08-22 19:35:30 -0400 |
| commit | f038c7c9a9646c2a126d693eab7d297cd25565e3 (patch) | |
| tree | 51b1366dabb78fad2e2a7cc0518b3604620f66d8 /arch/msp430/Cargo.toml | |
| parent | 2a9d07d7fefe5a6d7f7a482397060a96782142ac (diff) | |
Add msp430 architecture
Diffstat (limited to 'arch/msp430/Cargo.toml')
| -rw-r--r-- | arch/msp430/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/msp430/Cargo.toml b/arch/msp430/Cargo.toml new file mode 100644 index 00000000..ce849cb0 --- /dev/null +++ b/arch/msp430/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "arch_msp430" +version = "0.1.0" +authors = ["jrozner"] +edition = "2021" + +[lib] +crate-type = ["cdylib"] + +[dependencies] +binaryninja = { git = "https://github.com/Vector35/binaryninja-api.git", branch = "dev" } +log = "0.4.14" +msp430-asm = "^0.2" |
