1	.data
2	.global var
3	.text
4	.globl _start
5	.type _start, %function
6_start:
7	bl	foo
8	.size _start, . - _start
9