summaryrefslogtreecommitdiffstats
path: root/arch/mips/dec/reset.c
blob: e4d07608f4075f86cbb7c254d9b1c3c1805c21f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 *  $Id: $
 *
 *  Reset a DECstation machine.
 *
 */

void (*back_to_prom)(void) = (void (*)(void))0xBFC00000;

void dec_machine_restart(char *command)
{
	back_to_prom();
}

void dec_machine_halt(void)
{
	back_to_prom();
}

void dec_machine_power_off(void)
{
    /* DECstations don't have a software power switch */
	back_to_prom();
}