Commit 0788bd9
Merge #152
152: Fix __delay asm function for the thumbv6m-none-eabi target r=therealprof a=Disasm
Before:
```
00000000 <__delay>:
0: 46c0 nop ; (mov r8, r8)
2: 3801 subs r0, #1
4: d1fe bne.n 0 <__delay>
4: R_ARM_THM_JUMP8 __delay
6: 4770 bx lr
```
After:
```
00000000 <__delay>:
0: 46c0 nop ; (mov r8, r8)
2: 3801 subs r0, #1
4: d1fc bne.n 0 <__delay>
6: 4770 bx lr
```
Closes #125
Co-authored-by: Vadim Kaushan <admin@disasm.info>File tree
7 files changed
+2
-1
lines changed- bin
7 files changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| 34 | + | |
34 | 35 | | |
35 | 36 | | |
36 | | - | |
| 37 | + | |
37 | 38 | | |
38 | 39 | | |
39 | 40 | | |
| |||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 commit comments