blob: fdcfd43cf0d1f6d485153607560bad9fbf80538a (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $NetBSD: return_one.S,v 1.2 2017/07/20 01:13:47 uwe Exp $ */
#include <machine/asm.h>
NENTRY(return_one)
rts
mov #1, r0
SET_ENTRY_SIZE(return_one)
.globl return_one_end
return_one_end:
|