mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 23:03:29 +08:00
41 lines
679 B
ArmAsm
41 lines
679 B
ArmAsm
|
.syntax unified
|
||
|
.cpu cortex-a8
|
||
|
.thumb
|
||
|
.text
|
||
|
|
||
|
@ expansion 32 bytes
|
||
|
.macro bw1
|
||
|
1:
|
||
|
add.w r0, r1, r2
|
||
|
bl.w targetfn
|
||
|
add.w r0, r1, r2
|
||
|
bl.w targetfn
|
||
|
add.w r0, r1, r2
|
||
|
bl.w targetfn
|
||
|
add.w r0, r1, r2
|
||
|
bl.w targetfn
|
||
|
.endm
|
||
|
|
||
|
@ expansion 128 bytes
|
||
|
.macro bw2
|
||
|
bw1
|
||
|
bw1
|
||
|
bw1
|
||
|
bw1
|
||
|
.endm
|
||
|
|
||
|
.align 3
|
||
|
.global _start
|
||
|
.thumb
|
||
|
.thumb_func
|
||
|
.type _start, %function
|
||
|
_start:
|
||
|
nop
|
||
|
|
||
|
@ If calling an ARM destination, we *don't* want to create a
|
||
|
@ Cortex-A8 stub: the Thumb-to-ARM stub will suffice.
|
||
|
bw2
|
||
|
bw2
|
||
|
|
||
|
bx lr
|