diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/armv7/thumb.rs | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/test/armv7/thumb.rs b/test/armv7/thumb.rs index 66b5aab..b603925 100644 --- a/test/armv7/thumb.rs +++ b/test/armv7/thumb.rs @@ -454,6 +454,14 @@ fn test_decode_adr_cases() {          &[0xff, 0xa7],          "adr r7, 0x3fc"      ); +    test_display( +        &[0x0f, 0xf2, 0x4f, 0x56], +        "add r6, pc, 0x54f" +    ); +    test_display( +        &[0xaf, 0xf2, 0x4f, 0x56], +        "sub r6, pc, 0x54f" +    );  }  #[test]  fn test_decode_bcc_cases() { | 
