mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
40 lines
734 B
C
40 lines
734 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: hal/halppc/generic/reboot.c
|
|
* PURPOSE: Reboot functions.
|
|
* PROGRAMMER: Eric Kohl
|
|
* UPDATE HISTORY:
|
|
* Created 11/10/99
|
|
*/
|
|
|
|
#include <hal.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
typedef void (*void_fun)();
|
|
static VOID
|
|
HalReboot (VOID)
|
|
{
|
|
void_fun reset_vector = (void_fun)0xfff00100;
|
|
reset_vector();
|
|
}
|
|
|
|
|
|
VOID NTAPI
|
|
HalReturnToFirmware (
|
|
FIRMWARE_REENTRY Action
|
|
)
|
|
{
|
|
if (Action == HalHaltRoutine)
|
|
{
|
|
DbgPrint ("HalReturnToFirmware called!\n");
|
|
DbgBreakPoint ();
|
|
}
|
|
else if (Action == HalRebootRoutine)
|
|
{
|
|
HalReboot ();
|
|
}
|
|
}
|
|
|
|
/* EOF */
|