source: rtems/c/src/lib/libbsp/i386/pc386/startup/bspreset.c @ 9b623ee

4.104.115
Last change on this file since 9b623ee was 72798ee, checked in by Joel Sherrill <joel.sherrill@…>, on 09/22/08 at 21:53:54

2008-09-22 Joel Sherrill <joel.sherrill@…>

  • startup/bspreset.c: New file.
  • Property mode set to 100644
File size: 459 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2008.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#include <rtems.h>
13#include <bsp.h>
14#include <bsp/bootcard.h>
15
16void bsp_reset(void)
17{
18  /* shutdown and reboot */
19  outport_byte(0x64, 0xFE);      /* use keyboard controler to do the job... */
20}
Note: See TracBrowser for help on using the repository browser.