Home | History | Annotate | Line # | Download | only in mips
      1 /*	$NetBSD: return_one.S,v 1.3 2021/01/21 00:56:41 simonb Exp $ */
      2 
      3 #include <machine/asm.h>
      4 
      5 .set noreorder
      6 
      7 .globl	return_one, return_one_end;
      8 
      9 return_one:
     10 	jr	ra
     11 	 li	v0,1
     12 
     13 return_one_end:
     14