Skip to content

Commit

Permalink
Merge #80
Browse files Browse the repository at this point in the history
80: disasm: T1 encoding of UDF is not ARMv7-only r=japaric a=japaric

should fix issues like #77 

Co-authored-by: Jorge Aparicio <[email protected]>
  • Loading branch information
bors[bot] and japaric authored Nov 16, 2022
2 parents 00b0bf8 + 50f016f commit af05ec7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions firmware/.cargo/config.toml

This file was deleted.

2 changes: 1 addition & 1 deletion src/thumb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ pub fn analyze(
} else if matches(first, "0b010000_0100_xxx_xxx") {
// A7.7.11 ASR (register) - T1
continue;
} else if v7 && matches(first, "0b1101_1110_xxxxxxxx") {
} else if matches(first, "0b1101_1110_xxxxxxxx") {
// NOTE we break the alphabetical order because the rule for `B` overlaps with the rule
// for `UDF` but `UDF` takes precedence
// A7.7.191 UDF - T1
Expand Down

0 comments on commit af05ec7

Please sign in to comment.