blob: d37f8e9afef2268eb124d537f41ba8e4d04af77d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $NetBSD: return_one.S,v 1.3 2021/01/21 00:56:41 simonb Exp $ */
#include <machine/asm.h>
.set noreorder
.globl return_one, return_one_end;
return_one:
jr ra
li v0,1
return_one_end:
|