diff options
author | iximeow <me@iximeow.net> | 2020-03-15 13:20:08 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-03-15 13:20:08 -0700 |
commit | 31fda74b3043178f1fe1c79592f3aa82a36fcc20 (patch) | |
tree | cdf7070e3f482ef1f4d14367b1017b21a2982c46 | |
parent | 64085b1c4ca048b78f43a3eafdc1f3fdf6bd696b (diff) |
bump version to 0.0.3 and add a changelog
-rw-r--r-- | CHANGELOG | 13 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..c9ec754 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,13 @@ +## 0.0.3 +`Instruction`, `Opcode`, and `Operand` are now a useful model of decoded +operations. +* `Operands`, plural, the enum of operands in the instruction, is now gone in + favor of `Operand` that describe one operand of the instruction +* `Instruction` no longer include operand attributes like "add", "index", or "wback" +* better (not quite complete) support for non-user instructions and coprocessor instructions +* instructions operating on status registers through masks are now directly supported +* first brush of arm-version-specific decoder feature selection +* fix several preindex/postindex reversals + +## 0.0.2 +last revison that's sufficient for disassembly and really nothing else @@ -1,7 +1,7 @@ [package] name = "yaxpeax-arm" -version = "0.0.2" +version = "0.0.3" authors = [ "iximeow <me@iximeow.net>" ] license = "0BSD" repository = "http://git.iximeow.net/yaxpeax-arm/" |