blob: 96e03284acd8604ba047ffa6576e81b978cc37e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.syntax unified
.globl _start
.globl func_to_branch_to
.arm
.text
func_to_branch_to:
bx lr
.thumb
.section .foo, "xa"
.thumb_func
_start:
bl func_to_branch_to
|