complete this test for amd64

(identical to i386)
This commit is contained in:
drochner 2004-03-02 14:26:12 +00:00
parent 7e3d28789f
commit b451e43543
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
/* $NetBSD: initfini_asm.S,v 1.1 2004/03/02 14:26:12 drochner Exp $ */
/*
* This file placed in the public domain.
* Jason R. Thorpe, July 16, 2001.
*/
#include <machine/asm.h>
.section .init, "ax", @progbits
call _C_LABEL(i_am_init)
.previous
.section .fini, "ax", @progbits
call _C_LABEL(i_am_fini)
.previous