Home | History | Annotate | Download | only in nios2
      1 # Source file used to test the beq macro.
      2 	.globl	text_label
      3 	.text
      4 .set norelax
      5 text_label:
      6 	beq	r4,r5,text_label
      7 	bge	r4,r5,text_label
      8 	bgeu	r4,r5,text_label
      9 	blt	r4,r5,text_label
     10 	bltu	r4,r5,text_label
     11 	bne	r4,r5,text_label
     12 
     13 # Branch to an external label.
     14 	br	external_label
     15 
     16