1# Source file used to test the call and callr instructions
2.text
3.set norelax
4.set noat
5foo:
6	call	func1
7	callr	r10
8# use external symbol
9	.global external
10	call	external
11func1:
12
13
14
15