Home | History | Annotate | Download | only in nios2
      1 # Source file used to test the call and callr instructions
      2 .text
      3 .set norelax
      4 foo:
      5 	call	func1
      6 	callr	r10
      7 # use external symbol
      8 	.global external
      9 	call	external
     10 func1:
     11 
     12 
     13 
     14