Refactor disassembler binary into arm7tdmi package

This commit is contained in:
Michel Heily 2019-06-24 21:45:25 +03:00
parent 5a5efae4c0
commit 094cbb5f29
3 changed files with 9 additions and 5 deletions

View file

@ -4,10 +4,9 @@ version = "0.1.0"
authors = ["Michel Heily <michelheily@gmail.com>"] authors = ["Michel Heily <michelheily@gmail.com>"]
edition = "2018" edition = "2018"
[workspace]
members = [".", "arm7tdmi"]
[dependencies] [dependencies]
byteorder = "*" byteorder = "*"
arm7tdmi = {path = "arm7tdmi"} arm7tdmi = {path = "arm7tdmi"}
[[bin]]
name = "disassembler"
path = "src/disassembler.rs"

View file

@ -5,6 +5,11 @@ authors = ["Michel Heily <michelheily@gmail.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
byteorder = "*"
enum-primitive-derive = "^0.1" enum-primitive-derive = "^0.1"
num-traits = "^0.1" num-traits = "^0.1"
bit = "^0.1" bit = "^0.1"
[[bin]]
name = "disass"
path = "src/disass.rs"