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