repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
regress
/
lib
/
csu
/
initfini
/
arch
/
alpha
/
initfini_asm.S
blob
79f3d515d9b02e950b73b70bd9505ea154a29b29
1
/* $NetBSD: initfini_asm.S,v 1.1 2001/07/17 03:41:04 thorpej Exp $ */
2
3
/*
4
* This file placed in the public domain.
5
* Jason R. Thorpe, July 16, 2001.
6
*/
7
8
#include <machine/asm.h>
9
10
.section .init, "ax", @progbits
11
br ra, 1f
12
1: LDGP(ra)
13
jsr ra, i_am_init
14
.align 3
15
.previous
16
17
.section .fini, "ax", @progbits
18
br ra, 1f
19
1: LDGP(ra)
20
jsr ra, i_am_fini
21
.align 3
22
.previous