reboot.S revision 184548
1295484Semaste/*-
2295484Semaste * Copyright (c) 1990 The Regents of the University of California.
3295484Semaste * All rights reserved.
4295484Semaste *
5295484Semaste * This code is derived from software contributed to Berkeley by
6295484Semaste * William Jolitz.
7295484Semaste *
8295484Semaste * Redistribution and use in source and binary forms, with or without
9295484Semaste * modification, are permitted provided that the following conditions
10295484Semaste * are met:
11295484Semaste * 1. Redistributions of source code must retain the above copyright
12295484Semaste *    notice, this list of conditions and the following disclaimer.
13295484Semaste * 2. Redistributions in binary form must reproduce the above copyright
14295484Semaste *    notice, this list of conditions and the following disclaimer in the
15295484Semaste *    documentation and/or other materials provided with the distribution.
16295484Semaste * 4. Neither the name of the University nor the names of its contributors
17295484Semaste *    may be used to endorse or promote products derived from this software
18295484Semaste *    without specific prior written permission.
19295484Semaste *
20295484Semaste * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21295484Semaste * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22295484Semaste * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23295484Semaste * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24295484Semaste * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25295484Semaste * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26295484Semaste * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27295484Semaste * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28295484Semaste * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29295484Semaste * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30295484Semaste * SUCH DAMAGE.
31295484Semaste */
32295484Semaste
33295484Semaste#if defined(SYSLIBC_SCCS) && !defined(lint)
34295484Semaste	.asciz "@(#)reboot.s	5.1 (Berkeley) 4/23/90"
35295484Semaste#endif /* SYSLIBC_SCCS and not lint */
36295484Semaste#include <machine/asm.h>
37295484Semaste__FBSDID("$FreeBSD: head/lib/libc/i386/sys/reboot.S 184548 2008-11-02 01:28:47Z peter $");
38295484Semaste
39295484Semaste#include "SYS.h"
40295484Semaste
41295484SemasteSYSCALL(reboot)
42295484Semaste	iret
43295484SemasteEND(reboot)
44295484Semaste