blob: 33a247f7f6971bb084dcc07c00664545d54742d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
.text
.globl _start
.type _start, @function
_start:
jal foo
jal sexternal
j sglobal
.size _start, .-_start
.globl sexternal
.type sexternal, @function
sexternal:
jr $31
.size sexternal, .-sexternal
.data
.type dlocal, @object
dlocal:
.word dlocal
.size dlocal, .-dlocal
.globl dexternal
.type dexternal, @object
dexternal:
.word dglobal
.word dexternal
.size dexternal, .-dexternal
|