diff options
Diffstat (limited to 'asm-v8.s')
-rw-r--r-- | asm-v8.s | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/asm-v8.s b/asm-v8.s new file mode 100644 index 0000000..b667bf0 --- /dev/null +++ b/asm-v8.s @@ -0,0 +1,27 @@ + .section .text.__tt + .global __tt + .thumb_func +__tt: + tt r0, r0 + bx lr + + .section .text.__ttt + .global __ttt + .thumb_func +__ttt: + ttt r0, r0 + bx lr + + .section .text.__tta + .global __tta + .thumb_func +__tta: + tta r0, r0 + bx lr + + .section .text.__ttat + .global __ttat + .thumb_func +__ttat: + ttat r0, r0 + bx lr |